Endpoint Playground
Test Crawlora's Apple Maps Guides Publisher 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/publisher?publisher_id=<publisher_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| publisher_id | string | Yes | Publisher id: from the guides home or publishers list, a guide's publisher.id, or the publisher= value in a maps.apple.com/guides URL | |
| city_id | string | No | Restrict to one city: an id from this publisher's own cities list | |
| 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": "1706564968711360917",
"url": "https://maps.apple.com/guides?publisher=1706564968711360917&_provider=9902",
"name": "Sprudge",
"subtitle": "Coffee News & Culture",
"website": "https://sprudge.com",
"guide_count": 19,
"city_filter": {
"id": "18366846785603624515",
"name": "London",
"latitude": 51.5033768,
"longitude": -0.0795183
},
"cities": [
{
"id": "18366846785603624515",
"name": "London",
"latitude": 51.5033768,
"longitude": -0.0795183
},
{
"id": "8077516530309122779",
"name": "San Francisco",
"latitude": 37.779379,
"longitude": -122.418433
}
],
"guides": [
{
"id": "9905139136312820741",
"url": "https://maps.apple.com/guides?curated=9905139136312820741&_provider=9902",
"title": "The East London Coffee Guide",
"description": "Where to drink coffee east of the City.",
"last_modified": "2024-01-19T16:29:14.000Z",
"item_total": 12,
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/ypVvG6F9jz7pUKN0Pt9c9w/1200x800.jpg",
"publisher": {
"id": "1706564968711360917",
"url": "https://maps.apple.com/guides?publisher=1706564968711360917&_provider=9902",
"name": "Sprudge",
"subtitle": "Coffee News & Culture",
"website": "https://sprudge.com",
"guide_count": 19
}
}
]
}
}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 Guides publisher by id: name, subtitle, website, guide count, the cities the publisher offers as filters, and its guides (each with id, title, description, last-modified time, place count, cover photo, and source link). Pass one of the publisher's own city ids as city_id to return only the guides for that city.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1706564968711360917",
"url": "https://maps.apple.com/guides?publisher=1706564968711360917&_provider=9902",
"name": "Sprudge",
"subtitle": "Coffee News & Culture",
"website": "https://sprudge.com",
"guide_count": 19,
"city_filter": {
"id": "18366846785603624515",
"name": "London",
"latitude": 51.5033768,
"longitude": -0.0795183
},
"cities": [
{
"id": "18366846785603624515",
"name": "London",
"latitude": 51.5033768,
"longitude": -0.0795183
},
{
"id": "8077516530309122779",
"name": "San Francisco",
"latitude": 37.779379,
"longitude": -122.418433
}
],
"guides": [
{
"id": "9905139136312820741",
"url": "https://maps.apple.com/guides?curated=9905139136312820741&_provider=9902",
"title": "The East London Coffee Guide",
"description": "Where to drink coffee east of the City.",
"last_modified": "2024-01-19T16:29:14.000Z",
"item_total": 12,
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/ypVvG6F9jz7pUKN0Pt9c9w/1200x800.jpg",
"publisher": {
"id": "1706564968711360917",
"url": "https://maps.apple.com/guides?publisher=1706564968711360917&_provider=9902",
"name": "Sprudge",
"subtitle": "Coffee News & Culture",
"website": "https://sprudge.com",
"guide_count": 19
}
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/guides/publisher?publisher_id=<publisher_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"