menu-items
menu-items
Page 52 of 61.
Overview
-
Herb-Crusted Tofu Fillet
#1225
Slow-cooked to perfection with aromatic herbs and spices.
-
Steamed Beef Fillet
#1226
A light yet satisfying dish with vibrant flavors.
-
Butter-Poached Turkey Fillet
#1227
A delightful blend of fresh ingredients and bold spices.
-
House Veggie Flatbread
#1228
Slow-cooked to perfection with aromatic herbs and spices.
-
Fried Chicken Skewers
#1229
Made fresh to order with the finest quality ingredients.
-
Spicy Duck Tacos
#1230
A delightful blend of fresh ingredients and bold spices.
-
Braised Salmon Bowl
#1231
A crowd-pleasing selection that never disappoints.
-
Classic Lobster Stir-Fry
#1232
A light yet satisfying dish with vibrant flavors.
-
Smoked Veggie Flatbread
#1233
Made fresh to order with the finest quality ingredients.
-
Savory Mushroom Platter
#1234
A light yet satisfying dish with vibrant flavors.
-
Charcoal Duck Tacos
#1235
Light and refreshing with a hint of citrus and herbs.
-
Charcoal Tuna Sandwich
#1236
A hearty choice for those who love bold, satisfying meals.
-
Slow-Cooked Turkey Platter
#1237
A crowd-pleasing selection that never disappoints.
-
Classic Crab Sandwich
#1238
Inspired by traditional recipes with a modern twist.
-
Fried Tofu Roll
#1239
Served with seasonal sides and house-made sauce.
-
Baked Lamb Curry
#1240
Made fresh to order with the finest quality ingredients.
-
Savory Crab Soup
#1241
A light yet satisfying dish with vibrant flavors.
-
Charcoal Turkey Pasta
#1242
Garnished with fresh herbs and a side of dipping sauce.
-
Classic Chicken Salad
#1243
A crowd-pleasing selection that never disappoints.
-
House Mushroom Platter
#1244
A customer favorite, crafted from locally sourced produce.
-
Pan-Seared Beef Wrap
#1245
A crowd-pleasing selection that never disappoints.
-
Seasonal Beef Curry
#1246
A light yet satisfying dish with vibrant flavors.
-
Fried Cod Wrap
#1247
A crowd-pleasing selection that never disappoints.
-
Glazed Tempeh Salad
#1248
A delightful blend of fresh ingredients and bold spices.
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": 1225,
"menuId": 130,
"name": "Herb-Crusted Tofu Fillet",
"slug": "herb-crusted-tofu-fillet-1225",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 14.58,
"currency": "USD",
"foodCategoryId": 29,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-1225/640/480",
"createdAt": "2024-07-18T21:09:47.344Z"
},
{
"id": 1226,
"menuId": 130,
"name": "Steamed Beef Fillet",
"slug": "steamed-beef-fillet-1226",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 75.09,
"currency": "USD",
"foodCategoryId": 18,
"spicyLevel": 1,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1226/640/480",
"createdAt": "2026-04-11T12:36:24.919Z"
},
{
"id": 1227,
"menuId": 130,
"name": "Butter-Poached Turkey Fillet",
"slug": "butter-poached-turkey-fillet-1227",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 59.83,
"currency": "USD",
"foodCategoryId": 2,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1227/640/480",
"createdAt": "2024-10-24T23:58:00.148Z"
}
],
"meta": {
"page": 52,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=52&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=53&limit=24",
"prev": "/api/v1/menu-items?page=51&limit=24"
}
}