Endpoint Playground
Test Crawlora's Apple Maps Places 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/places?place_ids=<place_ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place_ids | string | Yes | Comma-separated Apple place ids, 1 to 20 | |
| 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": {
"places": [
{
"id": "6435622567484707146",
"place_id": "I594FECA0B369D14A",
"url": "https://maps.apple.com/place?place-id=I594FECA0B369D14A",
"name": "Sightglass Coffee",
"type": "BUSINESS",
"category": "Coffee Roastery",
"latitude": 37.776974,
"longitude": -122.408529,
"address": "270 7th St, San Francisco, CA 94103, United States",
"phone": "+14154631673",
"website": "https://sightglasscoffee.com/blogs/shops/soma-district",
"rating": 4,
"rating_max": 5,
"rating_count": 2228,
"price_level": 2,
"price_max": 4,
"price_symbol": "$",
"amenities": [
{
"id": "crossbusiness.payments.applepay",
"name": "Accepts Apple Pay",
"present": true
}
],
"guide_ids": [
"13100041759208417726"
]
}
],
"not_found": [
"IFFFFFFFFFFFFFFFF"
]
}
}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 same full detail as the place endpoint for up to 20 place IDs in a single upstream call, plus the list of requested IDs Apple did not return. Accepts the external I... form and the numeric id interchangeably.
{
"code": 200,
"msg": "OK",
"data": {
"places": [
{
"id": "6435622567484707146",
"place_id": "I594FECA0B369D14A",
"url": "https://maps.apple.com/place?place-id=I594FECA0B369D14A",
"name": "Sightglass Coffee",
"type": "BUSINESS",
"category": "Coffee Roastery",
"latitude": 37.776974,
"longitude": -122.408529,
"address": "270 7th St, San Francisco, CA 94103, United States",
"phone": "+14154631673",
"website": "https://sightglasscoffee.com/blogs/shops/soma-district",
"rating": 4,
"rating_max": 5,
"rating_count": 2228,
"price_level": 2,
"price_max": 4,
"price_symbol": "$",
"amenities": [
{
"id": "crossbusiness.payments.applepay",
"name": "Accepts Apple Pay",
"present": true
}
],
"guide_ids": [
"13100041759208417726"
]
}
],
"not_found": [
"IFFFFFFFFFFFFFFFF"
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/places?place_ids=<place_ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"