Endpoint Playground
Test Crawlora's Apple Maps ETA 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/eta?origin_latitude=<origin_latitude>&origin_longitude=<origin_longitude>&destination_latitude=<destination_latitude>&destination_longitude=<destination_longitude>&mode=driving" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| origin_latitude | number | Yes | Origin latitude | |
| origin_longitude | number | Yes | Origin longitude | |
| destination_latitude | number | Yes | Destination latitude | |
| destination_longitude | number | Yes | Destination longitude | |
| mode | string | No | driving | Travel mode. Defaults to driving. |
| country | string | No | Two-letter ISO 3166-1 country code. Defaults to US. |
{
"code": 200,
"msg": "OK",
"data": {
"origin": {
"latitude": 37.7749,
"longitude": -122.4194
},
"destination": {
"latitude": 37.8199,
"longitude": -122.4783
},
"etas": [
{
"transport": "driving",
"duration_seconds": 1196,
"duration_historic_seconds": 1149,
"duration_static_seconds": 811,
"distance_meters": 10050
},
{
"transport": "walking",
"duration_seconds": 10459,
"duration_historic_seconds": 10459,
"duration_static_seconds": 10459,
"distance_meters": 9784
}
]
}
}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 Apple Maps travel-time estimates between an origin and a destination: for each transport type Apple reports (driving always; walking when requested), the live best estimate, the historic and free-flow durations, and the route distance. Cheaper than the directions endpoint when only the time and distance are needed. Apple has no cycling ETA; use the directions endpoint for cycling.
{
"code": 200,
"msg": "OK",
"data": {
"origin": {
"latitude": 37.7749,
"longitude": -122.4194
},
"destination": {
"latitude": 37.8199,
"longitude": -122.4783
},
"etas": [
{
"transport": "driving",
"duration_seconds": 1196,
"duration_historic_seconds": 1149,
"duration_static_seconds": 811,
"distance_meters": 10050
},
{
"transport": "walking",
"duration_seconds": 10459,
"duration_historic_seconds": 10459,
"duration_static_seconds": 10459,
"distance_meters": 9784
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-maps/eta?origin_latitude=<origin_latitude>&origin_longitude=<origin_longitude>&destination_latitude=<destination_latitude>&destination_longitude=<destination_longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"