menus
menus
Page 4 of 7.
Overview
-
Happy Hour Menu
#73
Signature dishes that define our culinary identity.
-
Kids Menu
#74
A curated selection of our finest dishes for the occasion.
-
Breakfast Menu
#75
Classic favorites and chef-inspired creations.
-
Breakfast Menu
#76
A thoughtfully designed menu for every palate.
-
Brunch Menu
#77
Premium selections paired with exceptional flavors.
-
Dinner Menu
#78
Premium selections paired with exceptional flavors.
-
Prix Fixe Menu
#79
House specialties and customer favorites in one place.
-
À La Carte Menu
#80
A thoughtfully designed menu for every palate.
-
Bar Menu
#81
Signature dishes that define our culinary identity.
-
Kids Menu
#82
House specialties and customer favorites in one place.
-
Breakfast Menu
#83
Fresh, locally sourced ingredients prepared with care.
-
Weekend Specials
#84
Fresh, locally sourced ingredients prepared with care.
-
Brunch Menu
#85
From light bites to hearty entrees, something for everyone.
-
À La Carte Menu
#86
A thoughtfully designed menu for every palate.
-
Catering Menu
#87
Classic favorites and chef-inspired creations.
-
Catering Menu
#88
House specialties and customer favorites in one place.
-
Catering Menu
#89
A curated selection of our finest dishes for the occasion.
-
Catering Menu
#90
House specialties and customer favorites in one place.
-
Seasonal Menu
#91
House specialties and customer favorites in one place.
-
Breakfast Menu
#92
A thoughtfully designed menu for every palate.
-
Weekend Specials
#93
Fresh, locally sourced ingredients prepared with care.
-
Tasting Menu
#94
Fresh, locally sourced ingredients prepared with care.
-
Breakfast Menu
#95
A curated selection of our finest dishes for the occasion.
-
Seasonal Menu
#96
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": 73,
"restaurantId": 46,
"name": "Happy Hour Menu",
"description": "Signature dishes that define our culinary identity.",
"isActive": true,
"createdAt": "2026-02-02T09:41:51.967Z",
"updatedAt": "2026-02-15T11:14:47.345Z"
},
{
"id": 74,
"restaurantId": 47,
"name": "Kids Menu",
"description": "A curated selection of our finest dishes for the occasion.",
"isActive": true,
"createdAt": "2025-10-11T06:09:31.110Z",
"updatedAt": "2026-04-02T11:33:33.959Z"
},
{
"id": 75,
"restaurantId": 47,
"name": "Breakfast Menu",
"description": "Classic favorites and chef-inspired creations.",
"isActive": true,
"createdAt": "2026-03-19T10:23:09.649Z",
"updatedAt": "2026-05-16T16:20:58.444Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 155,
"totalPages": 7
},
"links": {
"self": "/api/v1/menus?page=4&limit=24",
"first": "/api/v1/menus?page=1&limit=24",
"last": "/api/v1/menus?page=7&limit=24",
"next": "/api/v1/menus?page=5&limit=24",
"prev": "/api/v1/menus?page=3&limit=24"
}
}