menus
menus
Page 6 of 7.
Overview
-
À La Carte Menu
#121
From light bites to hearty entrees, something for everyone.
-
Family Menu
#122
A thoughtfully designed menu for every palate.
-
Family Menu
#123
A curated selection of our finest dishes for the occasion.
-
Kids Menu
#124
Premium selections paired with exceptional flavors.
-
Breakfast Menu
#125
From light bites to hearty entrees, something for everyone.
-
Breakfast Menu
#126
Premium selections paired with exceptional flavors.
-
Prix Fixe Menu
#127
From light bites to hearty entrees, something for everyone.
-
Family Menu
#128
From light bites to hearty entrees, something for everyone.
-
Catering Menu
#129
Fresh, locally sourced ingredients prepared with care.
-
Bar Menu
#130
Inspired by global cuisines and local traditions.
-
Weekend Specials
#131
House specialties and customer favorites in one place.
-
Bar Menu
#132
A thoughtfully designed menu for every palate.
-
Brunch Menu
#133
Inspired by global cuisines and local traditions.
-
Kids Menu
#134
Inspired by global cuisines and local traditions.
-
Catering Menu
#135
Fresh, locally sourced ingredients prepared with care.
-
Tasting Menu
#136
Fresh, locally sourced ingredients prepared with care.
-
Prix Fixe Menu
#137
Fresh, locally sourced ingredients prepared with care.
-
Kids Menu
#138
Seasonal ingredients crafted into memorable plates.
-
Weekend Specials
#139
A thoughtfully designed menu for every palate.
-
Tasting Menu
#140
Fresh, locally sourced ingredients prepared with care.
-
Happy Hour Menu
#141
Seasonal ingredients crafted into memorable plates.
-
Bar Menu
#142
A curated selection of our finest dishes for the occasion.
-
Prix Fixe Menu
#143
Signature dishes that define our culinary identity.
-
Kids Menu
#144
House specialties and customer favorites in one place.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/menus.d.ts https://example-data.com/types/menus.d.ts
import type { Menu, ListEnvelope } from "./types/menus";
const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Menu>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 121,
"restaurantId": 77,
"name": "À La Carte Menu",
"description": "From light bites to hearty entrees, something for everyone.",
"isActive": true,
"createdAt": "2026-04-05T09:59:27.351Z",
"updatedAt": "2026-04-20T00:01:05.461Z"
},
{
"id": 122,
"restaurantId": 78,
"name": "Family Menu",
"description": "A thoughtfully designed menu for every palate.",
"isActive": false,
"createdAt": "2024-08-01T05:21:04.379Z",
"updatedAt": "2025-01-19T04:06:04.569Z"
},
{
"id": 123,
"restaurantId": 78,
"name": "Family Menu",
"description": "A curated selection of our finest dishes for the occasion.",
"isActive": true,
"createdAt": "2024-09-13T02:03:21.789Z",
"updatedAt": "2025-01-15T17:50:18.898Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 155,
"totalPages": 7
},
"links": {
"self": "/api/v1/menus?page=6&limit=24",
"first": "/api/v1/menus?page=1&limit=24",
"last": "/api/v1/menus?page=7&limit=24",
"next": "/api/v1/menus?page=7&limit=24",
"prev": "/api/v1/menus?page=5&limit=24"
}
}