menu-items
menu-items
Page 50 of 61.
Overview
-
Butter-Poached Veggie Burger
#1177
Garnished with fresh herbs and a side of dipping sauce.
-
Glazed Lobster Curry
#1178
Slow-cooked to perfection with aromatic herbs and spices.
-
Pan-Seared Tempeh Steak
#1179
Garnished with fresh herbs and a side of dipping sauce.
-
Butter-Poached Shrimp Flatbread
#1180
Light and refreshing with a hint of citrus and herbs.
-
Classic Lobster Soup
#1181
Perfectly balanced with textures and complementary flavors.
-
Wood-Fired Tempeh Bowl
#1182
A customer favorite, crafted from locally sourced produce.
-
Roasted Cod Bowl
#1183
Light and refreshing with a hint of citrus and herbs.
-
Herb-Crusted Veggie Risotto
#1184
Rich flavors layered with care by our kitchen team.
-
Wood-Fired Shrimp Roll
#1185
Made fresh to order with the finest quality ingredients.
-
Classic Shrimp Fillet
#1186
Rich flavors layered with care by our kitchen team.
-
Charcoal Lamb Curry
#1187
A delightful blend of fresh ingredients and bold spices.
-
Baked Cheese Pizza
#1188
Topped with house-made salsa and a squeeze of fresh lime.
-
Braised Duck Skewers
#1189
Perfectly balanced with textures and complementary flavors.
-
House Tuna Sandwich
#1190
Served with seasonal sides and house-made sauce.
-
Tangy Veggie Tacos
#1191
A delightful blend of fresh ingredients and bold spices.
-
Slow-Cooked Duck Curry
#1192
Light and refreshing with a hint of citrus and herbs.
-
Garden Scallops Bowl
#1193
A delightful blend of fresh ingredients and bold spices.
-
Savory Tempeh Steak
#1194
Garnished with fresh herbs and a side of dipping sauce.
-
Grilled Lamb Wrap
#1195
Slow-cooked to perfection with aromatic herbs and spices.
-
Butter-Poached Cod Soup
#1196
Served with seasonal sides and house-made sauce.
-
Signature Crab Risotto
#1197
Perfectly balanced with textures and complementary flavors.
-
House Tofu Curry
#1198
Rich flavors layered with care by our kitchen team.
-
Signature Shrimp Soup
#1199
A crowd-pleasing selection that never disappoints.
-
Spicy Tuna Steak
#1200
A light yet satisfying dish with vibrant flavors.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menu-items?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/menu-items?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/menu-items.d.ts https://example-data.com/types/menu-items.d.ts
import type { MenuItem, ListEnvelope } from "./types/menu-items";
const res = await fetch(
"https://example-data.com/api/v1/menu-items?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<MenuItem>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1177,
"menuId": 126,
"name": "Butter-Poached Veggie Burger",
"slug": "butter-poached-veggie-burger-1177",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 39.89,
"currency": "USD",
"foodCategoryId": 10,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1177/640/480",
"createdAt": "2024-08-31T15:54:39.128Z"
},
{
"id": 1178,
"menuId": 126,
"name": "Glazed Lobster Curry",
"slug": "glazed-lobster-curry-1178",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 32.02,
"currency": "USD",
"foodCategoryId": 25,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1178/640/480",
"createdAt": "2024-10-16T20:21:10.898Z"
},
{
"id": 1179,
"menuId": 126,
"name": "Pan-Seared Tempeh Steak",
"slug": "pan-seared-tempeh-steak-1179",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 50.25,
"currency": "USD",
"foodCategoryId": 4,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1179/640/480",
"createdAt": "2026-01-01T14:32:48.013Z"
}
],
"meta": {
"page": 50,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=50&limit=24",
"first": "/api/v1/menu-items?page=1&limit=24",
"last": "/api/v1/menu-items?page=61&limit=24",
"next": "/api/v1/menu-items?page=51&limit=24",
"prev": "/api/v1/menu-items?page=49&limit=24"
}
}