menu-items
menu-items
Page 37 of 61.
Overview
-
Garden Tuna Fillet
#865
Perfectly balanced with textures and complementary flavors.
-
Butter-Poached Pork Flatbread
#866
A customer favorite, crafted from locally sourced produce.
-
Classic Turkey Wrap
#867
Light and refreshing with a hint of citrus and herbs.
-
Spicy Cod Tacos
#868
A light yet satisfying dish with vibrant flavors.
-
Crispy Cod Salad
#869
Garnished with fresh herbs and a side of dipping sauce.
-
Classic Lamb Tacos
#870
A customer favorite, crafted from locally sourced produce.
-
Chef's Mushroom Curry
#871
A delightful blend of fresh ingredients and bold spices.
-
Smoked Pork Wrap
#872
Finished with a drizzle of extra virgin olive oil.
-
Crispy Mushroom Flatbread
#873
Slow-cooked to perfection with aromatic herbs and spices.
-
Spicy Tofu Tacos
#874
Slow-cooked to perfection with aromatic herbs and spices.
-
Classic Lamb Pizza
#875
A crowd-pleasing selection that never disappoints.
-
Steamed Tuna Burger
#876
Rich flavors layered with care by our kitchen team.
-
Grilled Tuna Wrap
#877
Slow-cooked to perfection with aromatic herbs and spices.
-
Roasted Mushroom Salad
#878
A crowd-pleasing selection that never disappoints.
-
Classic Tuna Burger
#879
A customer favorite, crafted from locally sourced produce.
-
Baked Turkey Burger
#880
A light yet satisfying dish with vibrant flavors.
-
Classic Veggie Pizza
#881
A delightful blend of fresh ingredients and bold spices.
-
Signature Salmon Roll
#882
Light and refreshing with a hint of citrus and herbs.
-
Signature Cod Platter
#883
Rich flavors layered with care by our kitchen team.
-
Tangy Tofu Risotto
#884
Served with seasonal sides and house-made sauce.
-
Wood-Fired Scallops Roll
#885
Perfectly balanced with textures and complementary flavors.
-
Signature Duck Stir-Fry
#886
A delightful blend of fresh ingredients and bold spices.
-
Butter-Poached Cheese Pasta
#887
A hearty choice for those who love bold, satisfying meals.
-
Charcoal Duck Soup
#888
A hearty choice for those who love bold, satisfying meals.
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": 865,
"menuId": 90,
"name": "Garden Tuna Fillet",
"slug": "garden-tuna-fillet-865",
"description": "Perfectly balanced with textures and complementary flavors.",
"price": 4.19,
"currency": "USD",
"foodCategoryId": 17,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-865/640/480",
"createdAt": "2024-07-22T05:26:55.718Z"
},
{
"id": 866,
"menuId": 90,
"name": "Butter-Poached Pork Flatbread",
"slug": "butter-poached-pork-flatbread-866",
"description": "A customer favorite, crafted from locally sourced produce.",
"price": 54.61,
"currency": "USD",
"foodCategoryId": 8,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-866/640/480",
"createdAt": "2026-01-25T11:47:12.002Z"
},
{
"id": 867,
"menuId": 90,
"name": "Classic Turkey Wrap",
"slug": "classic-turkey-wrap-867",
"description": "Light and refreshing with a hint of citrus and herbs.",
"price": 67.44,
"currency": "USD",
"foodCategoryId": 3,
"spicyLevel": 3,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-867/640/480",
"createdAt": "2026-01-11T08:21:29.720Z"
}
],
"meta": {
"page": 37,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=37&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=38&limit=24",
"prev": "/api/v1/menu-items?page=36&limit=24"
}
}