Endpoint Playground
Test Crawlora's Arby's Locations 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/locations?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| radius | integer | No | Optional. Search radius in miles, 1-50, default 50. Upstream hard-blocks any radius over 50. | |
| limit | integer | No | Optional. Maximum stores per page, 1-50, default 10. | |
| page | integer | No | Optional. Zero-based page index, default 0. |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"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,
"distance_miles": 2.9,
"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"
}
],
"count": 10,
"total_count": 46,
"page": 0,
"total_pages": 5,
"radius": 50,
"source_url": "https://api.arbys.com/arb/digital-exp-api/v1/locations?...",
"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 Arby's restaurants within a radius of a coordinate, nearest first, with address, phone, coordinates, distance, open/closed status, hours, amenities, and pickup/delivery capability flags. Each result's store_id also prices GET /arbys/menu and GET /arbys/categories. To search from a free-text address instead of coordinates, resolve it first with GET /geocoding/search.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"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,
"distance_miles": 2.9,
"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"
}
],
"count": 10,
"total_count": 46,
"page": 0,
"total_pages": 5,
"radius": 50,
"source_url": "https://api.arbys.com/arb/digital-exp-api/v1/locations?...",
"fetched_at": "2026-09-02T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/arbys/locations?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"