menu-items
menu-items
Page 40 of 61.
Overview
-
Chef's Duck Platter
#937
A delightful blend of fresh ingredients and bold spices.
-
Fried Turkey Platter
#938
Slow-cooked to perfection with aromatic herbs and spices.
-
Butter-Poached Turkey Burger
#939
Perfectly balanced with textures and complementary flavors.
-
House Cheese Pizza
#940
Garnished with fresh herbs and a side of dipping sauce.
-
Wood-Fired Turkey Sandwich
#941
A crowd-pleasing selection that never disappoints.
-
Tangy Cheese Platter
#942
Garnished with fresh herbs and a side of dipping sauce.
-
Fire-Roasted Duck Risotto
#943
Served with seasonal sides and house-made sauce.
-
Savory Lamb Skewers
#944
Garnished with fresh herbs and a side of dipping sauce.
-
Charcoal Crab Risotto
#945
A delightful blend of fresh ingredients and bold spices.
-
Grilled Cheese Burger
#946
Rich flavors layered with care by our kitchen team.
-
Fried Duck Roll
#947
A crowd-pleasing selection that never disappoints.
-
Chef's Pork Wrap
#948
A light yet satisfying dish with vibrant flavors.
-
Butter-Poached Cheese Platter
#949
A light yet satisfying dish with vibrant flavors.
-
Baked Tuna Roll
#950
Served with seasonal sides and house-made sauce.
-
Spicy Scallops Salad
#951
Rich flavors layered with care by our kitchen team.
-
Seasonal Lobster Stir-Fry
#952
Topped with house-made salsa and a squeeze of fresh lime.
-
Braised Tuna Soup
#953
A light yet satisfying dish with vibrant flavors.
-
Savory Salmon Sandwich
#954
Inspired by traditional recipes with a modern twist.
-
Savory Turkey Tacos
#955
A crowd-pleasing selection that never disappoints.
-
Savory Duck Burger
#956
Topped with house-made salsa and a squeeze of fresh lime.
-
Classic Crab Curry
#957
A customer favorite, crafted from locally sourced produce.
-
Wood-Fired Scallops Wrap
#958
Served with seasonal sides and house-made sauce.
-
Glazed Salmon Platter
#959
A customer favorite, crafted from locally sourced produce.
-
Steamed Crab Soup
#960
Inspired by traditional recipes with a modern twist.
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": 937,
"menuId": 97,
"name": "Chef's Duck Platter",
"slug": "chef-s-duck-platter-937",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 26.96,
"currency": "USD",
"foodCategoryId": 29,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-937/640/480",
"createdAt": "2025-05-25T08:53:42.523Z"
},
{
"id": 938,
"menuId": 98,
"name": "Fried Turkey Platter",
"slug": "fried-turkey-platter-938",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 8.38,
"currency": "USD",
"foodCategoryId": 14,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-938/640/480",
"createdAt": "2026-01-31T02:57:14.808Z"
},
{
"id": 939,
"menuId": 98,
"name": "Butter-Poached Turkey Burger",
"slug": "butter-poached-turkey-burger-939",
"description": "Perfectly balanced with textures and complementary flavors.",
"price": 58.88,
"currency": "USD",
"foodCategoryId": 21,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-939/640/480",
"createdAt": "2025-04-09T04:10:35.465Z"
}
],
"meta": {
"page": 40,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=40&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=41&limit=24",
"prev": "/api/v1/menu-items?page=39&limit=24"
}
}