menu-items
menu-items
Page 24 of 61.
Overview
-
Butter-Poached Tuna Pasta
#553
Finished with a drizzle of extra virgin olive oil.
-
Chef's Beef Wrap
#554
Made fresh to order with the finest quality ingredients.
-
Seasonal Lamb Stir-Fry
#555
Made fresh to order with the finest quality ingredients.
-
Glazed Turkey Pizza
#556
Slow-cooked to perfection with aromatic herbs and spices.
-
Classic Pork Fillet
#557
Rich flavors layered with care by our kitchen team.
-
Grilled Scallops Wrap
#558
A delightful blend of fresh ingredients and bold spices.
-
Savory Mushroom Stir-Fry
#559
Slow-cooked to perfection with aromatic herbs and spices.
-
Baked Tempeh Curry
#560
A light yet satisfying dish with vibrant flavors.
-
Roasted Pork Roll
#561
Inspired by traditional recipes with a modern twist.
-
Fried Lamb Skewers
#562
Rich flavors layered with care by our kitchen team.
-
Classic Cheese Bowl
#563
A hearty choice for those who love bold, satisfying meals.
-
Butter-Poached Cheese Tacos
#564
Light and refreshing with a hint of citrus and herbs.
-
Classic Salmon Risotto
#565
Finished with a drizzle of extra virgin olive oil.
-
Smoked Salmon Flatbread
#566
Served with seasonal sides and house-made sauce.
-
Pan-Seared Tempeh Pizza
#567
Garnished with fresh herbs and a side of dipping sauce.
-
Grilled Cheese Risotto
#568
Finished with a drizzle of extra virgin olive oil.
-
Fire-Roasted Shrimp Bowl
#569
Made fresh to order with the finest quality ingredients.
-
Garden Mushroom Sandwich
#570
Light and refreshing with a hint of citrus and herbs.
-
Butter-Poached Lobster Steak
#571
Rich flavors layered with care by our kitchen team.
-
Seasonal Tofu Tacos
#572
A light yet satisfying dish with vibrant flavors.
-
Butter-Poached Pork Pizza
#573
Garnished with fresh herbs and a side of dipping sauce.
-
Smoked Scallops Roll
#574
A hearty choice for those who love bold, satisfying meals.
-
Seasonal Lamb Bowl
#575
Made fresh to order with the finest quality ingredients.
-
Steamed Cod Pasta
#576
Light and refreshing with a hint of citrus and herbs.
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": 553,
"menuId": 57,
"name": "Butter-Poached Tuna Pasta",
"slug": "butter-poached-tuna-pasta-553",
"description": "Finished with a drizzle of extra virgin olive oil.",
"price": 51.57,
"currency": "USD",
"foodCategoryId": 17,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-553/640/480",
"createdAt": "2025-01-28T15:33:07.349Z"
},
{
"id": 554,
"menuId": 58,
"name": "Chef's Beef Wrap",
"slug": "chef-s-beef-wrap-554",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 51.78,
"currency": "USD",
"foodCategoryId": 25,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-554/640/480",
"createdAt": "2026-01-21T11:14:15.493Z"
},
{
"id": 555,
"menuId": 58,
"name": "Seasonal Lamb Stir-Fry",
"slug": "seasonal-lamb-stir-fry-555",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 38.64,
"currency": "USD",
"foodCategoryId": 22,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-555/640/480",
"createdAt": "2026-02-23T16:56:33.021Z"
}
],
"meta": {
"page": 24,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=24&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=25&limit=24",
"prev": "/api/v1/menu-items?page=23&limit=24"
}
}