Endpoint Playground
Test Crawlora's Apple Maps Guide 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/guide?guide_id=<guide_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| guide_id | string | Yes | Guide id: from the guides home, a publisher page, a place's guide_ids, or the curated= value in a maps.apple.com/guides URL | |
| lang | string | No | Display language as a BCP 47 tag, e.g. en-US, fr-FR. Defaults to en-US. | |
| country | string | No | Two-letter ISO 3166-1 country code. Defaults to US. |
{
"code": 200,
"msg": "OK",
"data": {
"id": "13100041759208417726",
"url": "https://maps.apple.com/guides?curated=13100041759208417726&_provider=9902",
"title": "The San Francisco Coffee Guide",
"description": "The Bay Area's legendary coffee scene needs no introduction. The city's coffee shops and espresso bars have played host to a thousand moments of inspiration and intrigue, and are a vital part of San Francisco's ever-changing culture.",
"last_modified": "2023-02-08T19:42:59.000Z",
"item_total": 14,
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/w4_6Zdp2JR_l-mz7c9J94w/1200x800.jpg",
"publisher": {
"id": "1706564968711360917",
"url": "https://maps.apple.com/guides?publisher=1706564968711360917&_provider=9902",
"name": "Sprudge",
"subtitle": "Coffee News & Culture",
"guide_count": 19
},
"photos": [
{
"url": "https://is1-ssl.mzstatic.com/image/thumb/w4_6Zdp2JR_l-mz7c9J94w/1200x800.jpg",
"width": 1200,
"height": 800
}
],
"items": [
{
"place": {
"id": "14259377158355426565",
"place_id": "IC5E37BF9E2181D05",
"url": "https://maps.apple.com/place?place-id=IC5E37BF9E2181D05",
"name": "Linea Coffee Roasting",
"type": "BUSINESS",
"category": "Coffee Shop",
"latitude": 37.7637137,
"longitude": -122.3951792,
"address": "1200 18th St, San Francisco, CA 94107, United States",
"address_info": {
"street": "1200 18th St",
"neighborhood": "Potrero Hill",
"city": "San Francisco",
"state": "California",
"state_code": "CA",
"postal_code": "94107",
"country": "United States",
"country_code": "US"
},
"rating": 4.5,
"rating_max": 5,
"rating_count": 312,
"price_level": 2,
"price_max": 4,
"price_symbol": "$"
},
"description": "A charming Potrero Hill destination with dreamy outdoor seating from one of the city's best indie roasters.",
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/1eEfdDWQ7de_GpIMjmNZZg/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 one Apple Guide (curated collection) by id: title, description, last-modified time, cover photos, source link, publisher, and every place in the guide with the publisher's blurb for it plus the place's Apple place ID, name, category, coordinates, address, phone, website, rating, price level, hours, and photo.
{
"code": 200,
"msg": "OK",
"data": {
"id": "13100041759208417726",
"url": "https://maps.apple.com/guides?curated=13100041759208417726&_provider=9902",
"title": "The San Francisco Coffee Guide",
"description": "The Bay Area's legendary coffee scene needs no introduction. The city's coffee shops and espresso bars have played host to a thousand moments of inspiration and intrigue, and are a vital part of San Francisco's ever-changing culture.",
"last_modified": "2023-02-08T19:42:59.000Z",
"item_total": 14,
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/w4_6Zdp2JR_l-mz7c9J94w/1200x800.jpg",
"publisher": {
"id": "1706564968711360917",
"url": "https://maps.apple.com/guides?publisher=1706564968711360917&_provider=9902",
"name": "Sprudge",
"subtitle": "Coffee News & Culture",
"guide_count": 19
},
"photos": [
{
"url": "https://is1-ssl.mzstatic.com/image/thumb/w4_6Zdp2JR_l-mz7c9J94w/1200x800.jpg",
"width": 1200,
"height": 800
}
],
"items": [
{
"place": {
"id": "14259377158355426565",
"place_id": "IC5E37BF9E2181D05",
"url": "https://maps.apple.com/place?place-id=IC5E37BF9E2181D05",
"name": "Linea Coffee Roasting",
"type": "BUSINESS",
"category": "Coffee Shop",
"latitude": 37.7637137,
"longitude": -122.3951792,
"address": "1200 18th St, San Francisco, CA 94107, United States",
"address_info": {
"street": "1200 18th St",
"neighborhood": "Potrero Hill",
"city": "San Francisco",
"state": "California",
"state_code": "CA",
"postal_code": "94107",
"country": "United States",
"country_code": "US"
},
"rating": 4.5,
"rating_max": 5,
"rating_count": 312,
"price_level": 2,
"price_max": 4,
"price_symbol": "$"
},
"description": "A charming Potrero Hill destination with dreamy outdoor seating from one of the city's best indie roasters.",
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/1eEfdDWQ7de_GpIMjmNZZg/1200x800.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/guides/guide?guide_id=<guide_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"