Endpoint Playground
Test Crawlora's Five Guys Search 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Free-text location: a city, a zip/postal code, a street address, or a landmark | |
| 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": {
"query": "Chicago, IL",
"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,
"source_url": "https://prod-cdn.us.yextapis.com/v2/accounts/me/search/vertical/query?api_key=...&experienceKey=five-guys-us-locator&verticalKey=restaurants&input=Chicago%2C+IL&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 matching a free-text location query -- a city, a zip/postal code, a street address, or a landmark -- the same way restaurants.fiveguys.com's own locator search box works. Yext's own query understanding geocodes the text server-side, so no separate geocoding call is needed. 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 resolved query location. `total_results` reports how many restaurants matched overall, usually more than one page; use `offset` to page. A query that resolves to nowhere Five Guys operates returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Chicago, IL",
"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,
"source_url": "https://prod-cdn.us.yextapis.com/v2/accounts/me/search/vertical/query?api_key=...&experienceKey=five-guys-us-locator&verticalKey=restaurants&input=Chicago%2C+IL&limit=10",
"fetched_at": "2026-09-05T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"