menus
menus
Page 6 of 7.
-
À 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.
- restaurantId
- Jaskolski LLC · East Elmira · ★ 4.1
- name
- À La Carte Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Medhurst, Effertz and Brown · Franeckiburgh · ★ 3.2
- name
- Family Menu
- description
- A thoughtfully designed menu for every palate.
- isActive
- false
- createdAt
- updatedAt
- restaurantId
- Medhurst, Effertz and Brown · Franeckiburgh · ★ 3.2
- name
- Family Menu
- description
- A curated selection of our finest dishes for the occasion.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Howe, Kunde and Ortiz · Rosemead · ★ 4.9
- name
- Kids Menu
- description
- Premium selections paired with exceptional flavors.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Howe, Kunde and Ortiz · Rosemead · ★ 4.9
- name
- Breakfast Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Heathcote Group · New Eduardoboro · ★ 4.0
- name
- Breakfast Menu
- description
- Premium selections paired with exceptional flavors.
- isActive
- false
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/menus?limit=25"const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = await res.json();import type { Menu, ListEnvelope } from "https://example-data.com/types/menus.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Menu>;import requests
res = requests.get(
"https://example-data.com/api/v1/menus",
params={"limit": 25},
)
data = res.json() {
"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",
"next": "/api/v1/menus?page=7",
"prev": "/api/v1/menus?page=5"
}
}