Endpoint Playground
Test Crawlora's Apple Maps Guides Cities 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/guides/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lang | string | No | Display language as a BCP 47 tag, e.g. en-US, fr-FR. Region and city names follow it. Defaults to en-US. | |
| country | string | No | Two-letter ISO 3166-1 country code. Defaults to US. |
{
"code": 200,
"msg": "OK",
"data": {
"regions": [
{
"name": "North America",
"cities": [
{
"id": "5323833294395824021",
"name": "Atlanta",
"country": "United States",
"latitude": 33.748188,
"longitude": -84.390865,
"photo_url": "https://is2-ssl.mzstatic.com/image/thumb/-cSWxNFFtkAygebPim-Ezg/1200x800.jpg"
},
{
"id": "8077516530309122779",
"name": "San Francisco",
"country": "United States",
"latitude": 37.779379,
"longitude": -122.418433,
"photo_url": "https://is4-ssl.mzstatic.com/image/thumb/7puls6L6HZdsJplSyhrPJA/1200x800.jpg"
}
]
},
{
"name": "Europe",
"cities": [
{
"id": "18366846785603624515",
"name": "London",
"country": "United Kingdom",
"latitude": 51.5033768,
"longitude": -0.0795183,
"photo_url": "https://is5-ssl.mzstatic.com/image/thumb/RDVfnewE9nzSfqX2dAyJCA/1200x800.jpg"
},
{
"id": "686784093234299453",
"name": "Paris",
"country": "France",
"latitude": 48.8567879,
"longitude": 2.3510768,
"photo_url": "https://is3-ssl.mzstatic.com/image/thumb/91tDKd4YA6cIoLLVQzY1VA/1200x800.jpg"
}
]
},
{
"name": "Australia",
"cities": [
{
"id": "17679939856455531905",
"name": "Sydney",
"country": "Australia",
"latitude": -33.87271,
"longitude": 151.2056942,
"photo_url": "https://is2-ssl.mzstatic.com/image/thumb/r9UweGeBI1gCOfGQ2OPCpw/1200x800.jpg"
}
]
}
]
}
}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 Apple Guides city picker: every region (North America, Europe, Australia, and any Apple adds) with the cities it publishes guides for, each with its id, country, coordinates, and cover photo. Pass a city id to the guides home, publishers, or publisher endpoints to scope them to that city; omit it for the Worldwide scope.
{
"code": 200,
"msg": "OK",
"data": {
"regions": [
{
"name": "North America",
"cities": [
{
"id": "5323833294395824021",
"name": "Atlanta",
"country": "United States",
"latitude": 33.748188,
"longitude": -84.390865,
"photo_url": "https://is2-ssl.mzstatic.com/image/thumb/-cSWxNFFtkAygebPim-Ezg/1200x800.jpg"
},
{
"id": "8077516530309122779",
"name": "San Francisco",
"country": "United States",
"latitude": 37.779379,
"longitude": -122.418433,
"photo_url": "https://is4-ssl.mzstatic.com/image/thumb/7puls6L6HZdsJplSyhrPJA/1200x800.jpg"
}
]
},
{
"name": "Europe",
"cities": [
{
"id": "18366846785603624515",
"name": "London",
"country": "United Kingdom",
"latitude": 51.5033768,
"longitude": -0.0795183,
"photo_url": "https://is5-ssl.mzstatic.com/image/thumb/RDVfnewE9nzSfqX2dAyJCA/1200x800.jpg"
},
{
"id": "686784093234299453",
"name": "Paris",
"country": "France",
"latitude": 48.8567879,
"longitude": 2.3510768,
"photo_url": "https://is3-ssl.mzstatic.com/image/thumb/91tDKd4YA6cIoLLVQzY1VA/1200x800.jpg"
}
]
},
{
"name": "Australia",
"cities": [
{
"id": "17679939856455531905",
"name": "Sydney",
"country": "Australia",
"latitude": -33.87271,
"longitude": 151.2056942,
"photo_url": "https://is2-ssl.mzstatic.com/image/thumb/r9UweGeBI1gCOfGQ2OPCpw/1200x800.jpg"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/guides/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"