Endpoint Playground
Test Crawlora's Sonic Drive-In Availability 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/sonic/availability?store_id=<store_id>&fulfillment=PICKUP" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Sonic store number, e.g. from /sonic/nearby | |
| fulfillment | string | No | PICKUP | Fulfillment method: PICKUP or DELIVERY. Defaults to PICKUP. |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4521",
"fulfillment": "PICKUP",
"timezone": "America/Denver",
"slot_duration_minutes": 5,
"lead_time_minutes": 5,
"service_types": [
"ORDER_AHEAD",
"CURBSIDE_PICKUP",
"DELIVERY",
"DRIVE_THROUGH"
],
"channels": [
{
"service_type": "CURBSIDE_PICKUP",
"days": [
{
"date": "2026-09-05",
"count": 2,
"slots": [
{
"start_time": "2026-09-05T16:45:00Z",
"end_time": "2026-09-05T16:50:00Z"
},
{
"start_time": "2026-09-05T16:50:00Z",
"end_time": "2026-09-05T16:55:00Z"
}
]
}
]
}
],
"total_slots": 2,
"source_url": "https://api-idp.sonicdrivein.com/snc/digital-exp-api/v2/locations/4521/fulfillment/PICKUP/slots",
"fetched_at": "2026-09-05T12:00:00Z"
}
}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 bookable order-ahead windows for one Sonic Drive-In restaurant, grouped by service channel and local date. Each window has a UTC start_time and end_time. Also returns the store's timezone, how long each window lasts (slot_duration_minutes), the prep/handoff buffer before the first bookable window (lead_time_minutes), and service_types -- every channel the store supports, which is a superset of the channels that currently have windows. fulfillment selects the request method and accepts exactly `PICKUP` or `DELIVERY`; note the per-window service_type is a separate, finer vocabulary and can be `ORDER_AHEAD`, `CURBSIDE_PICKUP`, `DRIVE_THROUGH`, `STORE`, `PICKUP` or `DELIVERY`. A closed or fully-booked restaurant returns an empty channels array with total_slots 0, not an error. An unknown store_id returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4521",
"fulfillment": "PICKUP",
"timezone": "America/Denver",
"slot_duration_minutes": 5,
"lead_time_minutes": 5,
"service_types": [
"ORDER_AHEAD",
"CURBSIDE_PICKUP",
"DELIVERY",
"DRIVE_THROUGH"
],
"channels": [
{
"service_type": "CURBSIDE_PICKUP",
"days": [
{
"date": "2026-09-05",
"count": 2,
"slots": [
{
"start_time": "2026-09-05T16:45:00Z",
"end_time": "2026-09-05T16:50:00Z"
},
{
"start_time": "2026-09-05T16:50:00Z",
"end_time": "2026-09-05T16:55:00Z"
}
]
}
]
}
],
"total_slots": 2,
"source_url": "https://api-idp.sonicdrivein.com/snc/digital-exp-api/v2/locations/4521/fulfillment/PICKUP/slots",
"fetched_at": "2026-09-05T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/sonic/availability?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"