Convert city names, addresses, and place names to coordinates and vice versa. Powered by OpenStreetMap Nominatim. Free, no key required.
https://api.apiclearinghouse.com/v1/call/geocodingAuthenticate with X-Api-Key: chk_live_... header.
/search| Name | Type | Required | Description |
|---|---|---|---|
| q | string | required | Location search query |
| limit | number | optional | Max results (1-10)(default: 5) |
curl -s "https://api.apiclearinghouse.com/v1/call/geocoding/search?q={q}&limit=5" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"results": "example"
}
}/reverse| Name | Type | Required | Description |
|---|---|---|---|
| lat | number | required | Latitude |
| lon | number | required | Longitude |
curl -s "https://api.apiclearinghouse.com/v1/call/geocoding/reverse?lat={lat}&lon={lon}" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"city": "example",
"country": "example",
"postcode": "example",
"country_code": "example",
"display_name": "example"
}
}No setup required. Sign in and run Geocoding directly from your browser.
Open in Explorer →Monthly limits also apply per plan.