Endpoint Playground
Test Crawlora's Apple Maps Guides Publishers 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/publishers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| city_id | string | No | City id from /apple-maps/guides/cities. Omit for the Worldwide publisher 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": {
"scope": "worldwide",
"publishers": [
{
"id": "17882075820533551969",
"url": "https://maps.apple.com/guides?publisher=17882075820533551969&_provider=9902",
"name": "365 Things Austin",
"subtitle": "Daily Things To Do In Austin",
"website": "https://365thingsaustin.com/",
"guide_count": 2
},
{
"id": "5295979391266658318",
"url": "https://maps.apple.com/guides?publisher=5295979391266658318&_provider=9902",
"name": "AllTrails",
"subtitle": "Find your outdoors",
"website": "https://www.alltrails.com",
"guide_count": 14
},
{
"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 the Apple Guides "Browse by Publisher" list for the Worldwide scope or one city, sorted by name: each publisher's id (the value the publisher endpoint takes), name, subtitle, website, and number of guides. With no city_id this is the complete enumeration of every publisher Apple lists, usable as the id lookup table for the publisher endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"scope": "worldwide",
"publishers": [
{
"id": "17882075820533551969",
"url": "https://maps.apple.com/guides?publisher=17882075820533551969&_provider=9902",
"name": "365 Things Austin",
"subtitle": "Daily Things To Do In Austin",
"website": "https://365thingsaustin.com/",
"guide_count": 2
},
{
"id": "5295979391266658318",
"url": "https://maps.apple.com/guides?publisher=5295979391266658318&_provider=9902",
"name": "AllTrails",
"subtitle": "Find your outdoors",
"website": "https://www.alltrails.com",
"guide_count": 14
},
{
"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/publishers" \
-H "x-api-key: $CRAWLORA_API_KEY"