Endpoint Playground
Test Crawlora's Five Guys Nearby 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/nearby?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-100 (default 25) | |
| limit | integer | No | Maximum restaurants to return, 1-50 (default 10) | |
| offset | integer | No | Result offset for paging through total_results (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"locations": [
{
"id": "4020",
"name": "Five Guys",
"geomodifier": "Michigan Ave",
"address": {
"line1": "180 N Michigan Ave",
"city": "Chicago",
"region": "IL",
"postal_code": "60601",
"country": "US"
},
"latitude": 41.885572,
"longitude": -87.624864,
"phone": "+13122919686",
"hours": {
"monday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"tuesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"wednesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"thursday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"friday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"saturday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"sunday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
}
},
"delivery_hours": {
"monday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"tuesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"wednesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"thursday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"friday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"saturday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"sunday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
}
},
"price_range": "$",
"timezone": "America/Chicago",
"services": [
"Takeout",
"Dine In"
],
"pickup_and_delivery_services": [
"In-Store Pickup"
],
"order_url": "https://order.fiveguys.com/location/five-guys-michigan-ave/menu",
"delivery_url": "https://order.fiveguys.com/location/five-guys-michigan-ave/menu",
"menu_url": "http://www.fiveguys.com/Menu",
"website_url": "https://restaurants.fiveguys.com/180-n-michigan-ave",
"path": "180-n-michigan-ave",
"google_place_id": "ChIJHTEJ8EgtDogRepA4KPyvUCU",
"distance_miles": 0.46,
"distance_kilometers": 0.74
}
],
"count": 1,
"total_results": 18,
"radius": 25,
"source_url": "https://prod-cdn.us.yextapis.com/v2/accounts/me/search/vertical/query?api_key=...&experienceKey=five-guys-us-locator&verticalKey=restaurants&filters=%7B%22builtin.location%22%3A%7B%22%24near%22%3A%7B%22lat%22%3A41.881953%2C%22lng%22%3A-87.632362%2C%22radius%22%3A40233.6%7D%7D%7D&limit=10",
"fetched_at": "2026-09-05T04: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 within a radius of a latitude/longitude. Each result carries a full profile: a short area/plaza label distinguishing it from other locations, address, phone, weekly in-store hours plus a separate delivery-hours schedule when published, price tier, restaurant-amenity labels (e.g. Takeout, Dine In, Curbside), pickup/delivery service labels, order/delivery/menu URLs, a Google Place id, and distance in miles/kilometers from the given coordinate. `total_results` reports how many restaurants fall inside the radius overall, usually more than one page; use `offset` to page. A coordinate with no Five Guys nearby returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"locations": [
{
"id": "4020",
"name": "Five Guys",
"geomodifier": "Michigan Ave",
"address": {
"line1": "180 N Michigan Ave",
"city": "Chicago",
"region": "IL",
"postal_code": "60601",
"country": "US"
},
"latitude": 41.885572,
"longitude": -87.624864,
"phone": "+13122919686",
"hours": {
"monday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"tuesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"wednesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"thursday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"friday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"saturday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
},
"sunday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "23:00"
}
]
}
},
"delivery_hours": {
"monday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"tuesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"wednesday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"thursday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"friday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"saturday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
},
"sunday": {
"closed": false,
"open_intervals": [
{
"start": "10:00",
"end": "22:45"
}
]
}
},
"price_range": "$",
"timezone": "America/Chicago",
"services": [
"Takeout",
"Dine In"
],
"pickup_and_delivery_services": [
"In-Store Pickup"
],
"order_url": "https://order.fiveguys.com/location/five-guys-michigan-ave/menu",
"delivery_url": "https://order.fiveguys.com/location/five-guys-michigan-ave/menu",
"menu_url": "http://www.fiveguys.com/Menu",
"website_url": "https://restaurants.fiveguys.com/180-n-michigan-ave",
"path": "180-n-michigan-ave",
"google_place_id": "ChIJHTEJ8EgtDogRepA4KPyvUCU",
"distance_miles": 0.46,
"distance_kilometers": 0.74
}
],
"count": 1,
"total_results": 18,
"radius": 25,
"source_url": "https://prod-cdn.us.yextapis.com/v2/accounts/me/search/vertical/query?api_key=...&experienceKey=five-guys-us-locator&verticalKey=restaurants&filters=%7B%22builtin.location%22%3A%7B%22%24near%22%3A%7B%22lat%22%3A41.881953%2C%22lng%22%3A-87.632362%2C%22radius%22%3A40233.6%7D%7D%7D&limit=10",
"fetched_at": "2026-09-05T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"