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