Endpoint Playground
Test Crawlora's Five Guys Ordering 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/fiveguys/ordering-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 | Search radius in miles, 1-50 (default 20) | |
| limit | integer | No | Maximum restaurants to return, 1-50 (default 10) | |
| include_hours | boolean | No | Include each store's dated business and delivery calendars | |
| days | integer | No | Days of calendar to return from today, 1-30 (default 7). Only meaningful with include_hours. |
{
"code": 200,
"msg": "OK",
"data": {
"locations": [
{
"id": "23841",
"store_number": "656",
"slug": "five-guys-656",
"name": "Five Guys Fig @ 7th Downtown LA",
"address": {
"line1": "735 S Figueroa St",
"city": "Los Angeles",
"region": "CA",
"postal_code": "90017",
"country": "US"
},
"latitude": 34.0492055,
"longitude": -118.2610677,
"phone": "(213) 628-3375",
"distance_miles": 0.4,
"is_available": true,
"customer_message": "DELIVERY is available at this location.",
"delivery_fee": 0,
"minimum_delivery_order": 15,
"minimum_pickup_order": 0,
"fulfillment": {
"delivery": false,
"pickup": true,
"curbside": false,
"dine_in": false,
"drive_thru": false,
"dispatch": true,
"group_orders": true,
"coupons": true,
"loyalty": false,
"calories_displayed": true
},
"advance_order_days": 7,
"supported_time_modes": [
"advance",
"asap"
],
"utc_offset": -7,
"order_url": "https://fiveguys.olo.com/menu/five-guys-656/"
}
],
"count": 1,
"radius": 20,
"source_url": "https://order.fiveguys.com/restaurants/near?lat=34.048051&long=-118.254187&radius=20&limit=10",
"fetched_at": "2026-09-06T04: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 Five Guys restaurants near a latitude/longitude as Five Guys' own ordering platform publishes them, with commerce detail no other endpoint in this family carries: per-store delivery fee, delivery and pickup order minimums, whether the store is currently accepting orders at all, the handoff modes an order placed now could actually use (delivery, pickup, curbside, dine-in, drive-thru, dispatch), group-order/coupon/loyalty support, how many days ahead an order may be scheduled, and the store's own order URL. Set `include_hours` to also return each store's dated business and delivery calendars -- concrete dated windows rather than the recurring weekly schedule the locator endpoints publish, so they reflect holiday and special hours a weekly schedule cannot express. This is a different upstream from GET /fiveguys/nearby, which returns the marketing/locator record: the two describe the same restaurants but do not share ids, and this one carries a per-store name ("Five Guys Austin Arbor") where the locator publishes the generic brand name. Use each result's `id` with GET /fiveguys/ordering-menu for that store's priced menu. A coordinate with no Five Guys nearby returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"locations": [
{
"id": "23841",
"store_number": "656",
"slug": "five-guys-656",
"name": "Five Guys Fig @ 7th Downtown LA",
"address": {
"line1": "735 S Figueroa St",
"city": "Los Angeles",
"region": "CA",
"postal_code": "90017",
"country": "US"
},
"latitude": 34.0492055,
"longitude": -118.2610677,
"phone": "(213) 628-3375",
"distance_miles": 0.4,
"is_available": true,
"customer_message": "DELIVERY is available at this location.",
"delivery_fee": 0,
"minimum_delivery_order": 15,
"minimum_pickup_order": 0,
"fulfillment": {
"delivery": false,
"pickup": true,
"curbside": false,
"dine_in": false,
"drive_thru": false,
"dispatch": true,
"group_orders": true,
"coupons": true,
"loyalty": false,
"calories_displayed": true
},
"advance_order_days": 7,
"supported_time_modes": [
"advance",
"asap"
],
"utc_offset": -7,
"order_url": "https://fiveguys.olo.com/menu/five-guys-656/"
}
],
"count": 1,
"radius": 20,
"source_url": "https://order.fiveguys.com/restaurants/near?lat=34.048051&long=-118.254187&radius=20&limit=10",
"fetched_at": "2026-09-06T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/ordering-locations?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"