Endpoint Playground
Test Crawlora's Sonic Drive-In Store 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/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | A store path from /sonic/sitemap (section=locations, kind=store) |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4521",
"display_name": "2540 Dell Range Blvd, Cheyenne, WY",
"address": {
"line1": "2540 Dell Range Blvd",
"city": "Cheyenne",
"state": "WY",
"postal_code": "82009",
"country": "US"
},
"phone": "307-632-9188",
"latitude": 41.160531,
"longitude": -104.777659,
"status": "OPEN",
"timezone": "America/Denver",
"has_drive_through": true,
"is_delivery_enabled": true,
"is_digitally_enabled": true,
"amenities": [
"Drive-In Stalls",
"Mobile Ordering"
],
"hours": [
{
"day_of_week": "MONDAY",
"opens": "07:00",
"closes": "21:45"
}
],
"service_hours": [
{
"type": "DRIVE_THROUGH",
"hours": [
{
"day_of_week": "MONDAY",
"opens": "07:00",
"closes": "21:45"
}
],
"is_fulfillment": true,
"is_tipping_enabled": false
}
],
"delivery_providers": [
{
"name": "DoorDash",
"url": "https://www.doordash.com/...",
"is_active": true
}
],
"path": "locations/us/wy/cheyenne/2540-dell-range-blvd/store-4521",
"source_url": "https://www.sonicdrivein.com/_next/data/<buildId>/locations/us/wy/cheyenne/2540-dell-range-blvd/store-4521.json",
"fetched_at": "2026-09-04T12: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 one Sonic Drive-In restaurant's address, phone, coordinates, open/closed status, amenities, weekly hours broken down per fulfillment channel (order-ahead, pickup, curbside, in-store, delivery, drive-through), and delivery-provider deep links (DoorDash, GrubHub, Uber Eats, Postmates). path must be a "locations" section, kind=store path from GET /sonic/sitemap.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4521",
"display_name": "2540 Dell Range Blvd, Cheyenne, WY",
"address": {
"line1": "2540 Dell Range Blvd",
"city": "Cheyenne",
"state": "WY",
"postal_code": "82009",
"country": "US"
},
"phone": "307-632-9188",
"latitude": 41.160531,
"longitude": -104.777659,
"status": "OPEN",
"timezone": "America/Denver",
"has_drive_through": true,
"is_delivery_enabled": true,
"is_digitally_enabled": true,
"amenities": [
"Drive-In Stalls",
"Mobile Ordering"
],
"hours": [
{
"day_of_week": "MONDAY",
"opens": "07:00",
"closes": "21:45"
}
],
"service_hours": [
{
"type": "DRIVE_THROUGH",
"hours": [
{
"day_of_week": "MONDAY",
"opens": "07:00",
"closes": "21:45"
}
],
"is_fulfillment": true,
"is_tipping_enabled": false
}
],
"delivery_providers": [
{
"name": "DoorDash",
"url": "https://www.doordash.com/...",
"is_active": true
}
],
"path": "locations/us/wy/cheyenne/2540-dell-range-blvd/store-4521",
"source_url": "https://www.sonicdrivein.com/_next/data/<buildId>/locations/us/wy/cheyenne/2540-dell-range-blvd/store-4521.json",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/sonic/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"