Endpoint Playground
Test Crawlora's Geocoding Reverse 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/reverse?lat=52.5163&lon=13.3777&zoom=18&accept_language=en&addressdetails=true" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | 52.5163 | Latitude |
| lon | number | Yes | 13.3777 | Longitude |
| zoom | integer | No | 18 | Nominatim address zoom, defaults to 18 |
| 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": {
"place_id": 359125914,
"osm_type": "node",
"osm_id": 13306330095,
"lat": "40.7484257",
"lon": "-73.9856700",
"category": "tourism",
"type": "viewpoint",
"place_rank": 30,
"importance": 0.0000917593652246436,
"addresstype": "tourism",
"name": "",
"display_name": "350, 5th Avenue, Koreatown, Manhattan, New York, 10118, United States",
"address": {
"house_number": "350",
"road": "5th Avenue",
"neighbourhood": "Koreatown",
"suburb": "Manhattan",
"city": "New York",
"state": "New York",
"postcode": "10118",
"country": "United States",
"country_code": "us"
},
"boundingbox": [
"40.7483757",
"40.7484757",
"-73.9857200",
"-73.9856200"
]
}
}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 the nearest typed Nominatim JSONv2 place for latitude and longitude.
{
"code": 200,
"msg": "OK",
"data": {
"place_id": 359125914,
"osm_type": "node",
"osm_id": 13306330095,
"lat": "40.7484257",
"lon": "-73.9856700",
"category": "tourism",
"type": "viewpoint",
"place_rank": 30,
"importance": 0.0000917593652246436,
"addresstype": "tourism",
"name": "",
"display_name": "350, 5th Avenue, Koreatown, Manhattan, New York, 10118, United States",
"address": {
"house_number": "350",
"road": "5th Avenue",
"neighbourhood": "Koreatown",
"suburb": "Manhattan",
"city": "New York",
"state": "New York",
"postcode": "10118",
"country": "United States",
"country_code": "us"
},
"boundingbox": [
"40.7483757",
"40.7484757",
"-73.9857200",
"-73.9856200"
]
}
}curl "https://api.crawlora.net/api/v1/geocoding/reverse?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"