Endpoint Playground
Test Crawlora's Apple Maps Guides Nearby 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/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Latitude of the area | |
| longitude | number | Yes | Longitude of the area | |
| span | number | No | Viewport size in degrees around the center. Defaults to 0.05; minimum 0.001, maximum 5. | |
| 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": {
"city": {
"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"
},
"guides": [
{
"id": "17954826775154719886",
"url": "https://maps.apple.com/guides?curated=17954826775154719886&_provider=9902",
"title": "The 25 Best Restaurants In San Francisco",
"description": "Meet our 25 highest-rated restaurants.",
"last_modified": "2026-06-02T18:12:31.000Z",
"item_total": 25,
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/NMYjKRo8qX4xPqUirv4Iew/1200x800.jpg",
"source_url": "https://www.theinfatuation.com/san-francisco/guides/best-restaurants-in-san-francisco"
}
]
}
}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 guides Apple suggests for the area around a coordinate ("Guides We Love" for that location) as guide summaries, plus the Apple Guides city the area belongs to (with the city id the guides home endpoint takes). A coordinate outside any guides city returns an empty list.
{
"code": 200,
"msg": "OK",
"data": {
"city": {
"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"
},
"guides": [
{
"id": "17954826775154719886",
"url": "https://maps.apple.com/guides?curated=17954826775154719886&_provider=9902",
"title": "The 25 Best Restaurants In San Francisco",
"description": "Meet our 25 highest-rated restaurants.",
"last_modified": "2026-06-02T18:12:31.000Z",
"item_total": 25,
"photo_url": "https://is1-ssl.mzstatic.com/image/thumb/NMYjKRo8qX4xPqUirv4Iew/1200x800.jpg",
"source_url": "https://www.theinfatuation.com/san-francisco/guides/best-restaurants-in-san-francisco"
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/guides/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"