Endpoint Playground
Test Crawlora's Apple Maps Guides 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/apple-maps/guides/lookup?guide_ids=<guide_ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| guide_ids | string | Yes | Comma-separated Apple guide ids, 1 to 20 | |
| 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": {
"guides": [
{
"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.",
"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"
}
],
"not_found": [
"1"
]
}
}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 guide summaries (id, title, description, last-modified time, place count, cover photo, source link) for up to 20 guide ids in one call, for example the guide_ids a place carries. Ids Apple does not return are listed in not_found. Publisher details are not part of this lookup; use the guide endpoint for a single guide's publisher and places.
{
"code": 200,
"msg": "OK",
"data": {
"guides": [
{
"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.",
"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"
}
],
"not_found": [
"1"
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/guides/lookup?guide_ids=<guide_ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"