menus
menus
Page 5 of 7.
-
Family Menu
#97
Seasonal ingredients crafted into memorable plates.
-
À La Carte Menu
#98
From light bites to hearty entrees, something for everyone.
-
Weekend Specials
#99
Premium selections paired with exceptional flavors.
-
Tasting Menu
#100
From light bites to hearty entrees, something for everyone.
-
Kids Menu
#101
From light bites to hearty entrees, something for everyone.
-
Kids Menu
#102
A thoughtfully designed menu for every palate.
-
Prix Fixe Menu
#103
A curated selection of our finest dishes for the occasion.
-
Lunch Menu
#104
From light bites to hearty entrees, something for everyone.
-
Tasting Menu
#105
Classic favorites and chef-inspired creations.
-
Weekend Specials
#106
A curated selection of our finest dishes for the occasion.
-
Bar Menu
#107
Seasonal ingredients crafted into memorable plates.
-
Lunch Menu
#108
A curated selection of our finest dishes for the occasion.
-
Bar Menu
#109
Signature dishes that define our culinary identity.
-
Happy Hour Menu
#110
From light bites to hearty entrees, something for everyone.
-
Tasting Menu
#111
A thoughtfully designed menu for every palate.
-
Seasonal Menu
#112
Signature dishes that define our culinary identity.
-
Bar Menu
#113
Inspired by global cuisines and local traditions.
-
Catering Menu
#114
From light bites to hearty entrees, something for everyone.
-
Tasting Menu
#115
House specialties and customer favorites in one place.
-
Seasonal Menu
#116
Inspired by global cuisines and local traditions.
-
Kids Menu
#117
House specialties and customer favorites in one place.
-
Catering Menu
#118
Classic favorites and chef-inspired creations.
-
Lunch Menu
#119
Seasonal ingredients crafted into memorable plates.
-
Breakfast Menu
#120
Classic favorites and chef-inspired creations.
- restaurantId
- Gleichner - Kunde · New Itzel · ★ 4.9
- name
- Family Menu
- description
- Seasonal ingredients crafted into memorable plates.
- isActive
- false
- createdAt
- updatedAt
- restaurantId
- Douglas Group · New Cletastead · ★ 3.3
- name
- À La Carte Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Gerhold - Dietrich · North Joshua · ★ 4.9
- name
- Weekend Specials
- description
- Premium selections paired with exceptional flavors.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Gerhold - Dietrich · North Joshua · ★ 4.9
- name
- Tasting Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Hills Group · North Jaylincester · ★ 2.5
- name
- Kids Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Goldner - Labadie · Kylechester · ★ 3.3
- name
- Kids Menu
- description
- A thoughtfully designed menu for every palate.
- 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": 97,
"restaurantId": 61,
"name": "Family Menu",
"description": "Seasonal ingredients crafted into memorable plates.",
"isActive": false,
"createdAt": "2025-03-13T15:54:54.381Z",
"updatedAt": "2025-05-28T11:54:54.244Z"
},
{
"id": 98,
"restaurantId": 62,
"name": "À La Carte Menu",
"description": "From light bites to hearty entrees, something for everyone.",
"isActive": true,
"createdAt": "2025-10-08T12:39:16.441Z",
"updatedAt": "2026-03-02T09:16:25.544Z"
},
{
"id": 99,
"restaurantId": 63,
"name": "Weekend Specials",
"description": "Premium selections paired with exceptional flavors.",
"isActive": true,
"createdAt": "2024-11-06T05:51:23.364Z",
"updatedAt": "2025-07-08T07:34:41.301Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 155,
"totalPages": 7
},
"links": {
"self": "/api/v1/menus?page=5",
"next": "/api/v1/menus?page=6",
"prev": "/api/v1/menus?page=4"
}
}