Endpoint Playground
Test Crawlora's Apple Maps Reverse Geocode 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/apple-maps/reverse-geocode?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Latitude to reverse-geocode | |
| longitude | number | Yes | Longitude to reverse-geocode | |
| lang | string | No | Display language as a BCP 47 tag. Defaults to en-US. | |
| country | string | No | Two-letter ISO 3166-1 country code. Defaults to US. |
{
"code": 200,
"msg": "OK",
"data": {
"latitude": 37.7749,
"longitude": -122.4194,
"name": "Van Ness",
"type": "AOI",
"address": "Van Ness, San Francisco, CA 94103, United States",
"address_info": {
"neighborhood": "Van Ness",
"city": "San Francisco",
"county": "San Francisco",
"state": "California",
"state_code": "CA",
"postal_code": "94103",
"country": "United States",
"country_code": "US"
},
"matched_latitude": 37.7752559,
"matched_longitude": -122.4191641,
"timezone": "America/Los_Angeles",
"region": {
"south": 37.7707643,
"west": -122.4248466,
"north": 37.7797475,
"east": -122.4134816
}
}
}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 Apple Maps' address record for a coordinate: the matched place name and type (an address, street, or area of interest such as a neighborhood), the formatted and structured address, the matched center, the IANA timezone, and the display region.
{
"code": 200,
"msg": "OK",
"data": {
"latitude": 37.7749,
"longitude": -122.4194,
"name": "Van Ness",
"type": "AOI",
"address": "Van Ness, San Francisco, CA 94103, United States",
"address_info": {
"neighborhood": "Van Ness",
"city": "San Francisco",
"county": "San Francisco",
"state": "California",
"state_code": "CA",
"postal_code": "94103",
"country": "United States",
"country_code": "US"
},
"matched_latitude": 37.7752559,
"matched_longitude": -122.4191641,
"timezone": "America/Los_Angeles",
"region": {
"south": 37.7707643,
"west": -122.4248466,
"north": 37.7797475,
"east": -122.4134816
}
}
}curl "https://api.crawlora.net/api/v1/apple-maps/reverse-geocode?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"