menu-items
menu-items
Page 13 of 61.
Overview
-
Butter-Poached Duck Steak
#289
A light yet satisfying dish with vibrant flavors.
-
Roasted Tuna Burger
#290
Slow-cooked to perfection with aromatic herbs and spices.
-
Butter-Poached Veggie Pizza
#291
A light yet satisfying dish with vibrant flavors.
-
Herb-Crusted Shrimp Burger
#292
Inspired by traditional recipes with a modern twist.
-
Fire-Roasted Chicken Steak
#293
A delightful blend of fresh ingredients and bold spices.
-
Chef's Lobster Fillet
#294
Rich flavors layered with care by our kitchen team.
-
Fire-Roasted Crab Bowl
#295
A customer favorite, crafted from locally sourced produce.
-
Roasted Tuna Pasta
#296
Inspired by traditional recipes with a modern twist.
-
Baked Chicken Curry
#297
Topped with house-made salsa and a squeeze of fresh lime.
-
Grilled Tempeh Stir-Fry
#298
Made fresh to order with the finest quality ingredients.
-
House Turkey Wrap
#299
Garnished with fresh herbs and a side of dipping sauce.
-
Signature Turkey Platter
#300
A light yet satisfying dish with vibrant flavors.
-
Roasted Crab Flatbread
#301
Perfectly balanced with textures and complementary flavors.
-
Baked Salmon Pizza
#302
A hearty choice for those who love bold, satisfying meals.
-
Pan-Seared Scallops Risotto
#303
Finished with a drizzle of extra virgin olive oil.
-
Wood-Fired Lobster Stir-Fry
#304
Served with seasonal sides and house-made sauce.
-
Smoked Lobster Flatbread
#305
A customer favorite, crafted from locally sourced produce.
-
Tangy Tempeh Roll
#306
Garnished with fresh herbs and a side of dipping sauce.
-
Classic Salmon Curry
#307
Made fresh to order with the finest quality ingredients.
-
House Cod Pizza
#308
A light yet satisfying dish with vibrant flavors.
-
Slow-Cooked Duck Fillet
#309
A customer favorite, crafted from locally sourced produce.
-
Charcoal Turkey Salad
#310
A light yet satisfying dish with vibrant flavors.
-
Pan-Seared Lamb Wrap
#311
Served with seasonal sides and house-made sauce.
-
Baked Mushroom Pizza
#312
A crowd-pleasing selection that never disappoints.
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": 289,
"menuId": 29,
"name": "Butter-Poached Duck Steak",
"slug": "butter-poached-duck-steak-289",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 65.29,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-289/640/480",
"createdAt": "2025-01-10T13:22:52.085Z"
},
{
"id": 290,
"menuId": 29,
"name": "Roasted Tuna Burger",
"slug": "roasted-tuna-burger-290",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 23.1,
"currency": "USD",
"foodCategoryId": 29,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-290/640/480",
"createdAt": "2024-07-23T09:34:46.493Z"
},
{
"id": 291,
"menuId": 29,
"name": "Butter-Poached Veggie Pizza",
"slug": "butter-poached-veggie-pizza-291",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 30.88,
"currency": "USD",
"foodCategoryId": 1,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-291/640/480",
"createdAt": "2025-06-23T20:35:12.379Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=13&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=14&limit=24",
"prev": "/api/v1/menu-items?page=12&limit=24"
}
}