Endpoint Playground
Test Crawlora's Apple Maps Transit Departures 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/transit-departures?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 a transit stop or station (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": "5261664738367631956",
"name": "Powell Street Station"
},
"stop_name": "Powell Street Station",
"systems": [
{
"id": "9062973006619269966",
"name": "Muni Metro"
},
{
"id": "17398764657373254141",
"name": "BART"
}
],
"lines": [
{
"id": "8826443973154773866",
"name": "J Church",
"shield": "J",
"color": "F9A533",
"system": "Muni Metro",
"type": 900
}
],
"departures": [
{
"line_id": "8826443973154773866",
"line": "J Church",
"headsign": "Embarcadero",
"direction": "Inbound",
"stop_id": "15726335230036528588",
"scheduled": "2026-09-06T00:02:35Z",
"live": "2026-09-06T00:04:25Z",
"status": "on_time"
}
],
"ttl_seconds": 30
}
}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 a transit stop or station's systems (e.g. BART, Muni Metro), lines (name, shield, color), and the upcoming departures Apple Maps shows, each with the line, headsign, direction, scheduled and live times, and real-time status. Takes the stop's Apple place ID (find stops with the search endpoint, e.g. a station name). A place that is not a transit stop returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"place": {
"id": "5261664738367631956",
"name": "Powell Street Station"
},
"stop_name": "Powell Street Station",
"systems": [
{
"id": "9062973006619269966",
"name": "Muni Metro"
},
{
"id": "17398764657373254141",
"name": "BART"
}
],
"lines": [
{
"id": "8826443973154773866",
"name": "J Church",
"shield": "J",
"color": "F9A533",
"system": "Muni Metro",
"type": 900
}
],
"departures": [
{
"line_id": "8826443973154773866",
"line": "J Church",
"headsign": "Embarcadero",
"direction": "Inbound",
"stop_id": "15726335230036528588",
"scheduled": "2026-09-06T00:02:35Z",
"live": "2026-09-06T00:04:25Z",
"status": "on_time"
}
],
"ttl_seconds": 30
}
}curl "https://api.crawlora.net/api/v1/apple-maps/transit-departures?place_id=<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"