menu-items
menu-items
Page 42 of 61.
Overview
-
Braised Lamb Salad
#985
Inspired by traditional recipes with a modern twist.
-
Grilled Chicken Burger
#986
Served with seasonal sides and house-made sauce.
-
Butter-Poached Pork Soup
#987
Garnished with fresh herbs and a side of dipping sauce.
-
Garden Lobster Curry
#988
Rich flavors layered with care by our kitchen team.
-
Spicy Cod Sandwich
#989
Topped with house-made salsa and a squeeze of fresh lime.
-
Spicy Salmon Flatbread
#990
Slow-cooked to perfection with aromatic herbs and spices.
-
Pan-Seared Mushroom Roll
#991
Topped with house-made salsa and a squeeze of fresh lime.
-
Slow-Cooked Duck Stir-Fry
#992
Served with seasonal sides and house-made sauce.
-
Tangy Tofu Wrap
#993
Slow-cooked to perfection with aromatic herbs and spices.
-
Fire-Roasted Chicken Pasta
#994
A hearty choice for those who love bold, satisfying meals.
-
Steamed Pork Platter
#995
A customer favorite, crafted from locally sourced produce.
-
Garden Tuna Platter
#996
Perfectly balanced with textures and complementary flavors.
-
Grilled Lamb Platter
#997
Slow-cooked to perfection with aromatic herbs and spices.
-
Fried Shrimp Tacos
#998
A delightful blend of fresh ingredients and bold spices.
-
Classic Turkey Flatbread
#999
A hearty choice for those who love bold, satisfying meals.
-
Fire-Roasted Tempeh Burger
#1000
A hearty choice for those who love bold, satisfying meals.
-
Charcoal Pork Stir-Fry
#1001
Topped with house-made salsa and a squeeze of fresh lime.
-
Herb-Crusted Pork Pizza
#1002
Inspired by traditional recipes with a modern twist.
-
Herb-Crusted Duck Soup
#1003
Topped with house-made salsa and a squeeze of fresh lime.
-
Glazed Pork Soup
#1004
A light yet satisfying dish with vibrant flavors.
-
Spicy Lobster Tacos
#1005
Topped with house-made salsa and a squeeze of fresh lime.
-
Baked Tofu Tacos
#1006
A customer favorite, crafted from locally sourced produce.
-
Tangy Tuna Soup
#1007
Slow-cooked to perfection with aromatic herbs and spices.
-
Savory Scallops Salad
#1008
Slow-cooked to perfection with aromatic herbs and spices.
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": 985,
"menuId": 103,
"name": "Braised Lamb Salad",
"slug": "braised-lamb-salad-985",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 48.98,
"currency": "USD",
"foodCategoryId": 8,
"spicyLevel": 3,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-985/640/480",
"createdAt": "2026-03-30T22:50:51.214Z"
},
{
"id": 986,
"menuId": 103,
"name": "Grilled Chicken Burger",
"slug": "grilled-chicken-burger-986",
"description": "Served with seasonal sides and house-made sauce.",
"price": 65.66,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-986/640/480",
"createdAt": "2024-12-07T15:40:26.996Z"
},
{
"id": 987,
"menuId": 103,
"name": "Butter-Poached Pork Soup",
"slug": "butter-poached-pork-soup-987",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 32.67,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-987/640/480",
"createdAt": "2026-04-21T02:29:04.844Z"
}
],
"meta": {
"page": 42,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=42&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=43&limit=24",
"prev": "/api/v1/menu-items?page=41&limit=24"
}
}