Endpoint Playground
Test Crawlora's Apple Maps Venue Browse 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/venue/browse?place_id=<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place_id | string | Yes | Apple place ID of the venue (external I... form or numeric id) | |
| category | string | No | Directory category or subcategory to browse, by name (case-insensitive) or key from the venue's directory. Omit to list the directory only. | |
| limit | integer | No | Max places returned. Defaults to 25, maximum 100. | |
| lang | string | No | Display language as a BCP 47 tag, e.g. en-US. Defaults to en-US. | |
| country | string | No | Two-letter ISO 3166-1 country code. Defaults to US. |
{
"code": 200,
"msg": "OK",
"data": {
"venue": {
"id": "14643260860569849804",
"name": "San Francisco Centre"
},
"levels": [
{
"id": "6223611653047814433",
"ordinal": -1,
"name": "Lower Concourse",
"short_name": "LC"
},
{
"id": "10321348406465189830",
"ordinal": 0,
"name": "Level 1",
"short_name": "L1"
}
],
"directory": [
{
"name": "Clothes",
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"subcategories": [
{
"name": "Women",
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQoz…"
}
]
},
{
"name": "Shoes",
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQon…"
}
],
"category": "Clothes",
"total_found": 25,
"places": [
{
"id": "12547742734215203044",
"place_id": "IAE1E8C0F1C6B4F63",
"url": "https://maps.apple.com/place?place-id=IAE1E8C0F1C6B4F63",
"name": "Zara",
"type": "BUSINESS",
"category": "Clothing Store",
"latitude": 37.78417,
"longitude": -122.40691,
"address": "865 Market St, San Francisco, CA 94103, United States",
"rating": 3.5,
"rating_max": 5,
"rating_count": 412
}
]
}
}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 an indoor venue's directory (mall, airport, stadium: categories such as Clothes, Shoes, Food, All Shops with their subcategories and levels) and, when a category is given, the places inside the venue for that category with the same summary shape as search. Find venues with the search endpoint; a place without a directory returns 404, an unknown category returns 400 listing the available ones.
{
"code": 200,
"msg": "OK",
"data": {
"venue": {
"id": "14643260860569849804",
"name": "San Francisco Centre"
},
"levels": [
{
"id": "6223611653047814433",
"ordinal": -1,
"name": "Lower Concourse",
"short_name": "LC"
},
{
"id": "10321348406465189830",
"ordinal": 0,
"name": "Level 1",
"short_name": "L1"
}
],
"directory": [
{
"name": "Clothes",
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQ…",
"subcategories": [
{
"name": "Women",
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQoz…"
}
]
},
{
"name": "Shoes",
"key": "CikKHXNlYXJjaF9zdWdnZXN0X3ByaW1hcnlfc291cmNlEghDQVRFR09SWQon…"
}
],
"category": "Clothes",
"total_found": 25,
"places": [
{
"id": "12547742734215203044",
"place_id": "IAE1E8C0F1C6B4F63",
"url": "https://maps.apple.com/place?place-id=IAE1E8C0F1C6B4F63",
"name": "Zara",
"type": "BUSINESS",
"category": "Clothing Store",
"latitude": 37.78417,
"longitude": -122.40691,
"address": "865 Market St, San Francisco, CA 94103, United States",
"rating": 3.5,
"rating_max": 5,
"rating_count": 412
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/venue/browse?place_id=<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"