Endpoint Playground
Test Crawlora's Arby's Location 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/arbys/location?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | integer | Yes | A real Arby's store id, e.g. one returned by GET /arbys/locations |
{
"code": 200,
"msg": "OK",
"data": {
"store": {
"store_id": "8725",
"name": "5350 Harry Hines Blvd.",
"address": {
"line1": "5350 Harry Hines Blvd.",
"city": "Dallas",
"state": "TX",
"postal_code": "75235",
"country": "US",
"reference_point": "HARRY HINES BLVD & BUTLER ST"
},
"phone": "469-862-9090",
"latitude": 32.813771,
"longitude": -96.838894,
"status": "OPEN",
"timezone": "America/Chicago",
"amenities": [
"Carryout",
"Drive-thru",
"Wifi",
"Delivery",
"Online Ordering"
],
"hours": [
{
"day_of_week": "MONDAY",
"opens": "10:00",
"closes": "21:30"
}
],
"has_carry_out": true,
"has_drive_through": true,
"is_delivery_enabled": true,
"is_digitally_enabled": true,
"last_updated": "2026-09-02T02:05:57-05:00"
},
"source_url": "https://api.arbys.com/arb/digital-exp-api/v1/locations/8725?locale=en-us",
"fetched_at": "2026-09-02T12: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 Arby's restaurant directly by its store id (e.g. one found via GET /arbys/locations), with the same address, hours, amenities, and capability fields as that endpoint's results, minus distance (there is no search center for a direct lookup).
{
"code": 200,
"msg": "OK",
"data": {
"store": {
"store_id": "8725",
"name": "5350 Harry Hines Blvd.",
"address": {
"line1": "5350 Harry Hines Blvd.",
"city": "Dallas",
"state": "TX",
"postal_code": "75235",
"country": "US",
"reference_point": "HARRY HINES BLVD & BUTLER ST"
},
"phone": "469-862-9090",
"latitude": 32.813771,
"longitude": -96.838894,
"status": "OPEN",
"timezone": "America/Chicago",
"amenities": [
"Carryout",
"Drive-thru",
"Wifi",
"Delivery",
"Online Ordering"
],
"hours": [
{
"day_of_week": "MONDAY",
"opens": "10:00",
"closes": "21:30"
}
],
"has_carry_out": true,
"has_drive_through": true,
"is_delivery_enabled": true,
"is_digitally_enabled": true,
"last_updated": "2026-09-02T02:05:57-05:00"
},
"source_url": "https://api.arbys.com/arb/digital-exp-api/v1/locations/8725?locale=en-us",
"fetched_at": "2026-09-02T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/arbys/location?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"