Forward_Geocoding
Convert addresses into geographic coordinates using the Forward Geocoding tool on the API-Market MCP Server. Input address details to retrieve precise location data for mapping or analysis.
Instructions
Obtain location(geographic coordinates) for address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address that you want to geocode | |
area | No | area parameter | |
bounds | No | The bounding box for results preference | |
country | No | The two-letter bias country code (ccTLD or ISO 3166-1) in which to return results | |
language | No | The two-letter language code in which to return results (ISO 639-1) | |
locality | No | locality parameter | |
postal_code | No | postal_code parameter | |
region | No | region parameter | |
street | No | street parameter |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address that you want to geocode",
"type": "string"
},
"area": {
"description": "area parameter",
"type": "string"
},
"bounds": {
"description": "The bounding box for results preference",
"type": "string"
},
"country": {
"description": "The two-letter bias country code (ccTLD or ISO 3166-1) in which to return results",
"type": "string"
},
"language": {
"description": "The two-letter language code in which to return results (ISO 639-1)",
"type": "string"
},
"locality": {
"description": "locality parameter",
"type": "string"
},
"postal_code": {
"description": "postal_code parameter",
"type": "string"
},
"region": {
"description": "region parameter",
"type": "string"
},
"street": {
"description": "street parameter",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}