menu-items
menu-items
Page 31 of 61.
Overview
-
Spicy Turkey Bowl
#721
A light yet satisfying dish with vibrant flavors.
-
Braised Lobster Flatbread
#722
Inspired by traditional recipes with a modern twist.
-
Fire-Roasted Salmon Bowl
#723
Light and refreshing with a hint of citrus and herbs.
-
Baked Cheese Sandwich
#724
Light and refreshing with a hint of citrus and herbs.
-
Charcoal Chicken Soup
#725
A hearty choice for those who love bold, satisfying meals.
-
Slow-Cooked Tempeh Curry
#726
Light and refreshing with a hint of citrus and herbs.
-
Wood-Fired Salmon Pizza
#727
Garnished with fresh herbs and a side of dipping sauce.
-
Crispy Shrimp Risotto
#728
A crowd-pleasing selection that never disappoints.
-
Roasted Crab Fillet
#729
Rich flavors layered with care by our kitchen team.
-
Chef's Beef Fillet
#730
A light yet satisfying dish with vibrant flavors.
-
Crispy Cod Bowl
#731
A hearty choice for those who love bold, satisfying meals.
-
Fried Chicken Roll
#732
Made fresh to order with the finest quality ingredients.
-
Wood-Fired Tempeh Risotto
#733
Rich flavors layered with care by our kitchen team.
-
Chef's Tempeh Steak
#734
Inspired by traditional recipes with a modern twist.
-
Grilled Beef Fillet
#735
Garnished with fresh herbs and a side of dipping sauce.
-
Chef's Salmon Sandwich
#736
Perfectly balanced with textures and complementary flavors.
-
Tangy Turkey Bowl
#737
A light yet satisfying dish with vibrant flavors.
-
Seasonal Beef Steak
#738
Made fresh to order with the finest quality ingredients.
-
Chef's Tempeh Flatbread
#739
Perfectly balanced with textures and complementary flavors.
-
Seasonal Mushroom Platter
#740
A light yet satisfying dish with vibrant flavors.
-
Spicy Duck Soup
#741
Topped with house-made salsa and a squeeze of fresh lime.
-
Steamed Veggie Skewers
#742
Made fresh to order with the finest quality ingredients.
-
Grilled Chicken Wrap
#743
Topped with house-made salsa and a squeeze of fresh lime.
-
Roasted Duck Wrap
#744
Made fresh to order with the finest quality ingredients.
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": 721,
"menuId": 75,
"name": "Spicy Turkey Bowl",
"slug": "spicy-turkey-bowl-721",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 18.1,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-721/640/480",
"createdAt": "2025-09-29T02:24:11.373Z"
},
{
"id": 722,
"menuId": 75,
"name": "Braised Lobster Flatbread",
"slug": "braised-lobster-flatbread-722",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 78.81,
"currency": "USD",
"foodCategoryId": 2,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-722/640/480",
"createdAt": "2024-08-01T23:40:31.499Z"
},
{
"id": 723,
"menuId": 75,
"name": "Fire-Roasted Salmon Bowl",
"slug": "fire-roasted-salmon-bowl-723",
"description": "Light and refreshing with a hint of citrus and herbs.",
"price": 39.51,
"currency": "USD",
"foodCategoryId": 14,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-723/640/480",
"createdAt": "2026-03-25T14:21:42.825Z"
}
],
"meta": {
"page": 31,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=31&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=32&limit=24",
"prev": "/api/v1/menu-items?page=30&limit=24"
}
}