Endpoint Playground
Test Crawlora's Whataburger 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/whataburger/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /whataburger/sitemap entry |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "1403",
"name": "Whataburger",
"address": {
"line1": "1625 TX HWY 351",
"city": "ABILENE",
"region": "TX",
"postal_code": "79601",
"country": "US"
},
"phone_number": "(325) 692-8480",
"latitude": 32.481983,
"longitude": -99.744767,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
],
"services": [
"Curbside",
"Delivery"
],
"service_hours": {
"dine_in": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
],
"drive_thru": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
],
"curbside": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "00:00"
}
],
"delivery": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
]
},
"timezone": "America/Chicago",
"google_place_id": "ChIJabc123",
"path": "tx/abilene/1625-tx-hwy-351.html",
"source_url": "https://locations.whataburger.com/tx/abilene/1625-tx-hwy-351.html",
"fetched_at": "2026-09-01T17: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 Whataburger store: postal address, coordinates, phone, published week of opening hours, the restaurant services (curbside, delivery) Whataburger lists for it, and a per-channel hours breakdown (dine-in, drive-thru, curbside, delivery) where the channel's hours genuinely differ from the store's top-level hours. Store paths come from GET /whataburger/sitemap -- a store's canonical, curbside and delivery page paths all describe the same physical restaurant and return the same address; the response's own path field always reports the canonical page. Passing a state or city directory path returns a 404 rather than a hollow record. Note Whataburger's ordering/menu site returns no usable response for automated requests, so there is no credential-free menu source and this family is a locator only.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "1403",
"name": "Whataburger",
"address": {
"line1": "1625 TX HWY 351",
"city": "ABILENE",
"region": "TX",
"postal_code": "79601",
"country": "US"
},
"phone_number": "(325) 692-8480",
"latitude": 32.481983,
"longitude": -99.744767,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
],
"services": [
"Curbside",
"Delivery"
],
"service_hours": {
"dine_in": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
],
"drive_thru": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
],
"curbside": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "00:00"
}
],
"delivery": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "00:00",
"closes": "23:59"
}
]
},
"timezone": "America/Chicago",
"google_place_id": "ChIJabc123",
"path": "tx/abilene/1625-tx-hwy-351.html",
"source_url": "https://locations.whataburger.com/tx/abilene/1625-tx-hwy-351.html",
"fetched_at": "2026-09-01T17:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/whataburger/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"