Geocoding
Reverse Geocoding
Retrieve accurate location coordinates by entering a place name, returning an array of potential matches with their corresponding details.
Request Sample
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| lat | string | Latitude of the location you want to reverse-geocode. | Yes |
| lon | string | Longitude of the location you want to reverse-geocode. | Yes |
| format | string | Response format for reverse geocoding. Currently only osm is supported. | No |
| apiKey | string | Your Gebeta Maps API key. | Yes |
Response Codes for Reverse Geocoding API
| Status Code | Message | Description |
|---|---|---|
| 200 | OK | Request successful. Matching location information was found and returned. |
| 404 | Not Found | No matching location exists for the provided coordinates. |
| 401 | Not Authorized – No Token | Authentication failed. A valid API key was not provided |
| 401 | Not Authorized – Invalid Token | The provided API key is invalid or expired. |
| 422 | Invalid Input | One or more request parameters are incorrect. Review and correct your input. |