Endpoint Playground
Test Crawlora's Grubhub Restaurant 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/grubhub/restaurant?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_id | string | Yes | Grubhub's numeric restaurant id, from /grubhub/search |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "6238960",
"name": "7th Street Burger Financial District",
"address": "80 Nassau Street",
"city": "New York",
"state": "NY",
"postal_code": "10038-3711",
"latitude": 40.70979309,
"longitude": -74.00793458,
"timezone": "America/New_York",
"cuisines": [
"American",
"Hamburgers"
],
"rating": {
"value": 5,
"count": 1424
},
"price_rating": 1,
"online_ordering": true,
"offers_delivery": true,
"offers_pickup": true,
"has_coupons": false,
"is_new": false,
"hours": [
{
"day_of_week": "Monday",
"hours": "12:00 AM - 12:00 AM",
"start_time": "00:00:00.000",
"end_time": "23:59:59.000"
}
],
"source_url": "https://api-gtm.grubhub.com/restaurants/6238960",
"fetched_at": "2026-08-31T14:20: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 Grubhub restaurant: name, address with coordinates, timezone, phone, cuisines, star rating, price tier, whether online ordering is available, whether it offers delivery and pickup, delivery fee, coupon availability, restaurant tags and the full published week of service hours. Note this endpoint publishes fewer economics than GET /grubhub/search -- delivery minimum and the delivery/pickup time estimates come back empty here, so use the search endpoint when you need those.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "6238960",
"name": "7th Street Burger Financial District",
"address": "80 Nassau Street",
"city": "New York",
"state": "NY",
"postal_code": "10038-3711",
"latitude": 40.70979309,
"longitude": -74.00793458,
"timezone": "America/New_York",
"cuisines": [
"American",
"Hamburgers"
],
"rating": {
"value": 5,
"count": 1424
},
"price_rating": 1,
"online_ordering": true,
"offers_delivery": true,
"offers_pickup": true,
"has_coupons": false,
"is_new": false,
"hours": [
{
"day_of_week": "Monday",
"hours": "12:00 AM - 12:00 AM",
"start_time": "00:00:00.000",
"end_time": "23:59:59.000"
}
],
"source_url": "https://api-gtm.grubhub.com/restaurants/6238960",
"fetched_at": "2026-08-31T14:20:00Z"
}
}curl "https://api.crawlora.net/api/v1/grubhub/restaurant?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"