Endpoint Playground
Test Crawlora's Arby's Directory 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/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| state | string | No | Optional. Two-letter US state abbreviation. Omit to list every state. | |
| city | string | No | Optional. City name, requires state. Omit to list every city in the state. |
{
"code": 200,
"msg": "OK",
"data": {
"state": "OH",
"city": "Youngstown",
"cities": [
{
"city": "Youngstown",
"display_name": "Youngstown, OH",
"count": 5,
"stores": [
{
"store_id": "1",
"address": {
"line1": "29 BOARDMAN-CANFIELD RD",
"city": "Youngstown",
"state": "OH",
"postal_code": "44512",
"country": "US"
},
"phone": "330-758-2223"
}
]
}
],
"count": 1,
"source_url": "https://api.arbys.com/arb/digital-exp-api/v1/locations/regions?countryCode=US",
"fetched_at": "2026-09-03T12: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 level of Arby's US store directory: every state Arby's serves with its store count (no params), one state's cities (state given), or one city's stores (state and city given) -- id, address, and phone only, pair with GET /arbys/location for hours/amenities/status. Unlike GET /arbys/locations, this needs no coordinate; it is a plain browse of the whole ~3,200-store US chain.
{
"code": 200,
"msg": "OK",
"data": {
"state": "OH",
"city": "Youngstown",
"cities": [
{
"city": "Youngstown",
"display_name": "Youngstown, OH",
"count": 5,
"stores": [
{
"store_id": "1",
"address": {
"line1": "29 BOARDMAN-CANFIELD RD",
"city": "Youngstown",
"state": "OH",
"postal_code": "44512",
"country": "US"
},
"phone": "330-758-2223"
}
]
}
],
"count": 1,
"source_url": "https://api.arbys.com/arb/digital-exp-api/v1/locations/regions?countryCode=US",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/arbys/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"