menu-items
menu-items
Page 5 of 61.
Overview
-
Tangy Tofu Soup
#97
Slow-cooked to perfection with aromatic herbs and spices.
-
House Cod Skewers
#98
Served with seasonal sides and house-made sauce.
-
Charcoal Tempeh Wrap
#99
A customer favorite, crafted from locally sourced produce.
-
Chef's Pork Risotto
#100
Served with seasonal sides and house-made sauce.
-
Herb-Crusted Cod Flatbread
#101
Garnished with fresh herbs and a side of dipping sauce.
-
Signature Shrimp Wrap
#102
A delightful blend of fresh ingredients and bold spices.
-
Chef's Tempeh Flatbread
#103
A light yet satisfying dish with vibrant flavors.
-
Wood-Fired Tofu Sandwich
#104
A crowd-pleasing selection that never disappoints.
-
Slow-Cooked Tempeh Wrap
#105
Garnished with fresh herbs and a side of dipping sauce.
-
Savory Mushroom Burger
#106
Served with seasonal sides and house-made sauce.
-
Roasted Salmon Burger
#107
Made fresh to order with the finest quality ingredients.
-
Slow-Cooked Scallops Pizza
#108
Garnished with fresh herbs and a side of dipping sauce.
-
Spicy Salmon Pizza
#109
Light and refreshing with a hint of citrus and herbs.
-
Herb-Crusted Scallops Pizza
#110
A delightful blend of fresh ingredients and bold spices.
-
Seasonal Salmon Curry
#111
Rich flavors layered with care by our kitchen team.
-
Baked Salmon Soup
#112
A light yet satisfying dish with vibrant flavors.
-
Herb-Crusted Scallops Pasta
#113
Made fresh to order with the finest quality ingredients.
-
Garden Veggie Flatbread
#114
A delightful blend of fresh ingredients and bold spices.
-
Baked Tempeh Tacos
#115
A delightful blend of fresh ingredients and bold spices.
-
Smoked Tofu Steak
#116
A delightful blend of fresh ingredients and bold spices.
-
Fried Cod Pasta
#117
Rich flavors layered with care by our kitchen team.
-
Smoked Pork Curry
#118
A customer favorite, crafted from locally sourced produce.
-
Garden Beef Salad
#119
A delightful blend of fresh ingredients and bold spices.
-
Garden Pork Burger
#120
Topped with house-made salsa and a squeeze of fresh lime.
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": 97,
"menuId": 11,
"name": "Tangy Tofu Soup",
"slug": "tangy-tofu-soup-97",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 59.79,
"currency": "USD",
"foodCategoryId": 29,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-97/640/480",
"createdAt": "2026-04-15T12:20:15.369Z"
},
{
"id": 98,
"menuId": 11,
"name": "House Cod Skewers",
"slug": "house-cod-skewers-98",
"description": "Served with seasonal sides and house-made sauce.",
"price": 61.3,
"currency": "USD",
"foodCategoryId": 7,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-98/640/480",
"createdAt": "2024-05-25T00:23:09.835Z"
},
{
"id": 99,
"menuId": 11,
"name": "Charcoal Tempeh Wrap",
"slug": "charcoal-tempeh-wrap-99",
"description": "A customer favorite, crafted from locally sourced produce.",
"price": 63.16,
"currency": "USD",
"foodCategoryId": 9,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-99/640/480",
"createdAt": "2025-07-19T02:33:25.861Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=5&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=6&limit=24",
"prev": "/api/v1/menu-items?page=4&limit=24"
}
}