Endpoint Playground
Test Crawlora's Apple Maps Place Photos 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/place/photos?place_id=<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place_id | string | Yes | Apple place ID (external I... form or numeric id) | |
| 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": {
"place": {
"id": "6435622567484707146",
"name": "Sightglass Coffee"
},
"total": 3,
"photos": [
{
"id": "0CAhwiYjFF9ql5dSScHB7A",
"url": "https://is1-ssl.mzstatic.com/image/thumb/bF51kpjYtm4-K_WMlD8Wkw/320x320bb.jpeg",
"width": 308,
"height": 308
},
{
"id": "oUtvXhZ0boFM3u5jRFl8sg",
"url": "https://is1-ssl.mzstatic.com/image/thumb/KXluIk81w86BEqUz5RPW3Q/320x320bb.jpg",
"width": 308,
"height": 308,
"category": "Food & Drink"
},
{
"id": "9v4GJ4Kz0VfjJcUbQxk7Fw",
"url": "https://is1-ssl.mzstatic.com/image/thumb/Jm6mR0Ei0GwLW7jbcttV8A/320x320bb.jpg",
"width": 308,
"height": 308,
"category": "Interior"
}
]
}
}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 all of a place's photos (the place endpoint caps at 20): the business cover photo first when present, then the hero photo, then every categorized photo with its category (Food & Drink, Interior, Exterior, ...), width and height.
{
"code": 200,
"msg": "OK",
"data": {
"place": {
"id": "6435622567484707146",
"name": "Sightglass Coffee"
},
"total": 3,
"photos": [
{
"id": "0CAhwiYjFF9ql5dSScHB7A",
"url": "https://is1-ssl.mzstatic.com/image/thumb/bF51kpjYtm4-K_WMlD8Wkw/320x320bb.jpeg",
"width": 308,
"height": 308
},
{
"id": "oUtvXhZ0boFM3u5jRFl8sg",
"url": "https://is1-ssl.mzstatic.com/image/thumb/KXluIk81w86BEqUz5RPW3Q/320x320bb.jpg",
"width": 308,
"height": 308,
"category": "Food & Drink"
},
{
"id": "9v4GJ4Kz0VfjJcUbQxk7Fw",
"url": "https://is1-ssl.mzstatic.com/image/thumb/Jm6mR0Ei0GwLW7jbcttV8A/320x320bb.jpg",
"width": 308,
"height": 308,
"category": "Interior"
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/place/photos?place_id=<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"