Reverse Geocode
reverse_geocodeConvert geographic coordinates to addresses, search for addresses within a defined area, or find addresses along a path.
Instructions
Convert geographic coordinates to detailed address information (reverse geocoding). Supports single-point lookup, area-based search within a radius, and address lookup along a path or route. Requires at least one of: coordinates, insideArea, or along parameters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coordinates | No | Single point to reverse-geocode into an address. MOST COMMON mode. Provide EXACTLY one of `coordinates`, `insideArea`, or `along`. | |
| insideArea | No | Return addresses found INSIDE the given shape (bbox, circle, or polygon). Use for area-coverage queries (e.g. "list all addresses in this neighborhood"). Provide EXACTLY one of `coordinates`, `insideArea`, or `along`. | |
| along | No | Return addresses found ALONG a path within a given radius. Use for corridor queries (e.g. "addresses along this route"). Provide EXACTLY one of `coordinates`, `insideArea`, or `along`. | |
| limit | No | Maximum number of address results to return, ranked by relevance. Positive integer. Default 5. | |
| locale | No | ISO 639-2 / ISO 639-3 language code for returned address fields (e.g. "en", "de", "fr"). Default "en". | en |