menus
menus
Page 5 of 7.
Overview
-
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.
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": 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&limit=24",
"first": "/api/v1/menus?page=1&limit=24",
"last": "/api/v1/menus?page=7&limit=24",
"next": "/api/v1/menus?page=6&limit=24",
"prev": "/api/v1/menus?page=4&limit=24"
}
}