menus
menus
Page 2 of 7.
-
Happy Hour Menu
#25
From light bites to hearty entrees, something for everyone.
-
Lunch Menu
#26
Classic favorites and chef-inspired creations.
-
Catering Menu
#27
Classic favorites and chef-inspired creations.
-
Bar Menu
#28
Classic favorites and chef-inspired creations.
-
Prix Fixe Menu
#29
A thoughtfully designed menu for every palate.
-
Chef's Selection
#30
Fresh, locally sourced ingredients prepared with care.
-
Brunch Menu
#31
Inspired by global cuisines and local traditions.
-
Kids Menu
#32
Classic favorites and chef-inspired creations.
-
Prix Fixe Menu
#33
House specialties and customer favorites in one place.
-
Kids Menu
#34
A thoughtfully designed menu for every palate.
-
Tasting Menu
#35
Inspired by global cuisines and local traditions.
-
Prix Fixe Menu
#36
A thoughtfully designed menu for every palate.
-
Bar Menu
#37
Premium selections paired with exceptional flavors.
-
Catering Menu
#38
Inspired by global cuisines and local traditions.
-
Chef's Selection
#39
Inspired by global cuisines and local traditions.
-
Seasonal Menu
#40
Premium selections paired with exceptional flavors.
-
Seasonal Menu
#41
Signature dishes that define our culinary identity.
-
Seasonal Menu
#42
Fresh, locally sourced ingredients prepared with care.
-
Chef's Selection
#43
Signature dishes that define our culinary identity.
-
Happy Hour Menu
#44
Classic favorites and chef-inspired creations.
-
Happy Hour Menu
#45
House specialties and customer favorites in one place.
-
À La Carte Menu
#46
From light bites to hearty entrees, something for everyone.
-
Weekend Specials
#47
A thoughtfully designed menu for every palate.
-
Family Menu
#48
From light bites to hearty entrees, something for everyone.
- restaurantId
- Mohr - Harvey · South Kayachester · ★ 4.8
- name
- Happy Hour Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Simonis, Reynolds and Harber · Dahliastead · ★ 3.5
- name
- Lunch Menu
- description
- Classic favorites and chef-inspired creations.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Simonis, Reynolds and Harber · Dahliastead · ★ 3.5
- name
- Catering Menu
- description
- Classic favorites and chef-inspired creations.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Halvorson - Torp · Tonawanda · ★ 3.3
- name
- Bar Menu
- description
- Classic favorites and chef-inspired creations.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Collins Group · Murrieta · ★ 2.8
- name
- Prix Fixe Menu
- description
- A thoughtfully designed menu for every palate.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Hickle, Glover and Christiansen · Zulauffurt · ★ 3.7
- name
- Chef's Selection
- description
- Fresh, locally sourced ingredients prepared with care.
- isActive
- true
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/menus?limit=25"const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = await res.json();import type { Menu, ListEnvelope } from "https://example-data.com/types/menus.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Menu>;import requests
res = requests.get(
"https://example-data.com/api/v1/menus",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 25,
"restaurantId": 16,
"name": "Happy Hour Menu",
"description": "From light bites to hearty entrees, something for everyone.",
"isActive": true,
"createdAt": "2026-04-12T18:40:46.217Z",
"updatedAt": "2026-05-16T12:49:19.379Z"
},
{
"id": 26,
"restaurantId": 17,
"name": "Lunch Menu",
"description": "Classic favorites and chef-inspired creations.",
"isActive": true,
"createdAt": "2025-01-02T16:55:11.820Z",
"updatedAt": "2025-04-23T00:45:26.120Z"
},
{
"id": 27,
"restaurantId": 17,
"name": "Catering Menu",
"description": "Classic favorites and chef-inspired creations.",
"isActive": true,
"createdAt": "2024-09-10T15:31:41.318Z",
"updatedAt": "2024-09-26T12:25:37.497Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 155,
"totalPages": 7
},
"links": {
"self": "/api/v1/menus?page=2",
"next": "/api/v1/menus?page=3",
"prev": "/api/v1/menus?page=1"
}
}