menus
menus
Page 7 of 7.
Overview
-
Brunch Menu
#145
Seasonal ingredients crafted into memorable plates.
-
À La Carte Menu
#146
House specialties and customer favorites in one place.
-
À La Carte Menu
#147
Seasonal ingredients crafted into memorable plates.
-
Family Menu
#148
Classic favorites and chef-inspired creations.
-
Tasting Menu
#149
Seasonal ingredients crafted into memorable plates.
-
Tasting Menu
#150
Premium selections paired with exceptional flavors.
-
Family Menu
#151
Classic favorites and chef-inspired creations.
-
Chef's Selection
#152
Inspired by global cuisines and local traditions.
-
Brunch Menu
#153
A curated selection of our finest dishes for the occasion.
-
Dinner Menu
#154
A curated selection of our finest dishes for the occasion.
-
Prix Fixe Menu
#155
Inspired by global cuisines and local traditions.
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": 145,
"restaurantId": 94,
"name": "Brunch Menu",
"description": "Seasonal ingredients crafted into memorable plates.",
"isActive": true,
"createdAt": "2025-02-06T13:12:06.431Z",
"updatedAt": "2025-04-22T18:35:49.597Z"
},
{
"id": 146,
"restaurantId": 94,
"name": "À La Carte Menu",
"description": "House specialties and customer favorites in one place.",
"isActive": true,
"createdAt": "2024-12-27T03:49:15.442Z",
"updatedAt": "2025-07-19T11:27:06.787Z"
},
{
"id": 147,
"restaurantId": 95,
"name": "À La Carte Menu",
"description": "Seasonal ingredients crafted into memorable plates.",
"isActive": true,
"createdAt": "2026-04-13T03:31:12.097Z",
"updatedAt": "2026-04-26T23:37:51.737Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 155,
"totalPages": 7
},
"links": {
"self": "/api/v1/menus?page=7&limit=24",
"first": "/api/v1/menus?page=1&limit=24",
"last": "/api/v1/menus?page=7&limit=24",
"next": null,
"prev": "/api/v1/menus?page=6&limit=24"
}
}