menu-items
menu-items
Page 9 of 61.
Overview
-
Savory Tofu Curry
#193
A light yet satisfying dish with vibrant flavors.
-
Classic Beef Tacos
#194
Served with seasonal sides and house-made sauce.
-
Butter-Poached Cod Salad
#195
Garnished with fresh herbs and a side of dipping sauce.
-
Fire-Roasted Mushroom Bowl
#196
Slow-cooked to perfection with aromatic herbs and spices.
-
Grilled Chicken Pizza
#197
Garnished with fresh herbs and a side of dipping sauce.
-
Herb-Crusted Turkey Flatbread
#198
Served with seasonal sides and house-made sauce.
-
Fire-Roasted Tempeh Soup
#199
Served with seasonal sides and house-made sauce.
-
Fried Mushroom Platter
#200
Topped with house-made salsa and a squeeze of fresh lime.
-
Crispy Lamb Wrap
#201
Inspired by traditional recipes with a modern twist.
-
Baked Lobster Burger
#202
Inspired by traditional recipes with a modern twist.
-
Spicy Veggie Flatbread
#203
A hearty choice for those who love bold, satisfying meals.
-
Butter-Poached Mushroom Tacos
#204
Inspired by traditional recipes with a modern twist.
-
Signature Mushroom Platter
#205
Perfectly balanced with textures and complementary flavors.
-
Baked Cod Skewers
#206
A hearty choice for those who love bold, satisfying meals.
-
Seasonal Lobster Curry
#207
A crowd-pleasing selection that never disappoints.
-
Grilled Cheese Pizza
#208
Served with seasonal sides and house-made sauce.
-
Pan-Seared Lamb Flatbread
#209
Light and refreshing with a hint of citrus and herbs.
-
Steamed Duck Curry
#210
Inspired by traditional recipes with a modern twist.
-
Fire-Roasted Beef Pasta
#211
Garnished with fresh herbs and a side of dipping sauce.
-
Braised Salmon Risotto
#212
Topped with house-made salsa and a squeeze of fresh lime.
-
Signature Duck Salad
#213
Finished with a drizzle of extra virgin olive oil.
-
Spicy Lobster Risotto
#214
A hearty choice for those who love bold, satisfying meals.
-
Fire-Roasted Veggie Bowl
#215
Perfectly balanced with textures and complementary flavors.
-
Chef's Mushroom Salad
#216
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": 193,
"menuId": 21,
"name": "Savory Tofu Curry",
"slug": "savory-tofu-curry-193",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 75.91,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-193/640/480",
"createdAt": "2026-02-25T16:36:15.429Z"
},
{
"id": 194,
"menuId": 21,
"name": "Classic Beef Tacos",
"slug": "classic-beef-tacos-194",
"description": "Served with seasonal sides and house-made sauce.",
"price": 14.94,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-194/640/480",
"createdAt": "2025-04-08T21:46:35.751Z"
},
{
"id": 195,
"menuId": 21,
"name": "Butter-Poached Cod Salad",
"slug": "butter-poached-cod-salad-195",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 3.93,
"currency": "USD",
"foodCategoryId": 15,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-195/640/480",
"createdAt": "2024-09-14T12:09:38.062Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=9&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=10&limit=24",
"prev": "/api/v1/menu-items?page=8&limit=24"
}
}