/geocoding/lookupapiKey1 credit/requestLookup Nominatim OSM ids
Returns typed Nominatim JSONv2 places for comma-separated OSM ids such as W34633854,N123,R456.
Required params: osm_ids:query
API Reference
Use Crawlora's Geocoding API endpoints to extract supported public Geocoding data as structured JSON. This documentation covers 3 active endpoints including Lookup Nominatim OSM ids, Reverse geocode coordinates, Search Nominatim places. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and AI-agent workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as osm_ids, lat, lon, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.
Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.
curl -X GET "https://api.crawlora.net/api/v1/geocoding/search?q=coffee&country=us&limit=10&addressdetails=true&extratags=true&namedetails=true" \
-H "x-api-key: $CRAWLORA_API_KEY"These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.
/geocoding/lookupapiKey1 credit/requestReturns typed Nominatim JSONv2 places for comma-separated OSM ids such as W34633854,N123,R456.
Required params: osm_ids:query
/geocoding/reverseapiKey1 credit/requestReturns the nearest typed Nominatim JSONv2 place for latitude and longitude.
Required params: lat:query, lon:query
/geocoding/searchapiKey1 credit/requestReturns typed Nominatim JSONv2 forward geocoding results. Use either q or structured fields, not both.
Required params: None
| Endpoint | API path | Method | Credits | Required params | Docs | Playground |
|---|---|---|---|---|---|---|
| Lookup Nominatim OSM ids | /geocoding/lookup | GET | 1 credit/request | osm_ids:query | View docs | Try endpoint |
| Reverse geocode coordinates | /geocoding/reverse | GET | 1 credit/request | lat:query, lon:query | View docs | Try endpoint |
| Search Nominatim places | /geocoding/search | GET | 1 credit/request | None | View docs | Try endpoint |