Endpoint Playground
Test Crawlora's Geocoding Lookup API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/geocoding/lookup?osm_ids=W23102165&accept_language=en&addressdetails=true" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| osm_ids | string | Yes | W23102165 | Comma-separated OSM ids such as W34633854,N123,R456 |
| accept_language | string | No | en | Preferred result language, forwarded to Nominatim |
| addressdetails | boolean | No | true | Include address details, defaults to true |
| extratags | boolean | No | Include OSM extra tags | |
| namedetails | boolean | No | Include multilingual name details |
{
"code": 200,
"msg": "OK",
"data": {
"query": "W34633854",
"results": [
{
"place_id": 358220252,
"osm_type": "way",
"osm_id": 34633854,
"lat": "40.7484421",
"lon": "-73.9856589",
"category": "office",
"type": "yes",
"place_rank": 30,
"importance": 0.5803438355141769,
"addresstype": "office",
"name": "Empire State Building",
"display_name": "Empire State Building, 350, 5th Avenue, New York, United States",
"address": {
"office": "Empire State Building",
"house_number": "350",
"road": "5th Avenue",
"city": "New York",
"state": "New York",
"postcode": "10118",
"country": "United States",
"country_code": "us"
},
"extratags": {
"website": "https://www.esbnyc.com",
"wikidata": "Q9188"
},
"namedetails": {
"name": "Empire State Building",
"name:en": "Empire State Building"
}
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns typed Nominatim JSONv2 places for comma-separated OSM ids such as W34633854,N123,R456.
{
"code": 200,
"msg": "OK",
"data": {
"query": "W34633854",
"results": [
{
"place_id": 358220252,
"osm_type": "way",
"osm_id": 34633854,
"lat": "40.7484421",
"lon": "-73.9856589",
"category": "office",
"type": "yes",
"place_rank": 30,
"importance": 0.5803438355141769,
"addresstype": "office",
"name": "Empire State Building",
"display_name": "Empire State Building, 350, 5th Avenue, New York, United States",
"address": {
"office": "Empire State Building",
"house_number": "350",
"road": "5th Avenue",
"city": "New York",
"state": "New York",
"postcode": "10118",
"country": "United States",
"country_code": "us"
},
"extratags": {
"website": "https://www.esbnyc.com",
"wikidata": "Q9188"
},
"namedetails": {
"name": "Empire State Building",
"name:en": "Empire State Building"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/geocoding/lookup?osm_ids=<osm_ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"