menu-items
menu-items
Page 2 of 61.
Overview
-
Seasonal Veggie Roll
#25
Slow-cooked to perfection with aromatic herbs and spices.
-
Herb-Crusted Chicken Tacos
#26
A crowd-pleasing selection that never disappoints.
-
Seasonal Salmon Bowl
#27
Rich flavors layered with care by our kitchen team.
-
Glazed Turkey Bowl
#28
Finished with a drizzle of extra virgin olive oil.
-
Chef's Cod Soup
#29
Finished with a drizzle of extra virgin olive oil.
-
Charcoal Duck Pizza
#30
Topped with house-made salsa and a squeeze of fresh lime.
-
Roasted Crab Curry
#31
A crowd-pleasing selection that never disappoints.
-
Butter-Poached Duck Sandwich
#32
Perfectly balanced with textures and complementary flavors.
-
Steamed Salmon Sandwich
#33
Made fresh to order with the finest quality ingredients.
-
Charcoal Scallops Salad
#34
A crowd-pleasing selection that never disappoints.
-
Garden Lamb Risotto
#35
Served with seasonal sides and house-made sauce.
-
Smoked Veggie Burger
#36
Served with seasonal sides and house-made sauce.
-
House Veggie Sandwich
#37
A light yet satisfying dish with vibrant flavors.
-
Baked Veggie Wrap
#38
A crowd-pleasing selection that never disappoints.
-
Wood-Fired Cheese Flatbread
#39
Garnished with fresh herbs and a side of dipping sauce.
-
Glazed Shrimp Pizza
#40
Perfectly balanced with textures and complementary flavors.
-
Garden Duck Sandwich
#41
Inspired by traditional recipes with a modern twist.
-
Classic Crab Soup
#42
Slow-cooked to perfection with aromatic herbs and spices.
-
Roasted Duck Platter
#43
Garnished with fresh herbs and a side of dipping sauce.
-
Classic Chicken Burger
#44
A crowd-pleasing selection that never disappoints.
-
Classic Lobster Steak
#45
Garnished with fresh herbs and a side of dipping sauce.
-
Butter-Poached Crab Wrap
#46
A hearty choice for those who love bold, satisfying meals.
-
Seasonal Turkey Risotto
#47
Perfectly balanced with textures and complementary flavors.
-
Smoked Lobster Salad
#48
Finished with a drizzle of extra virgin olive oil.
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": 25,
"menuId": 3,
"name": "Seasonal Veggie Roll",
"slug": "seasonal-veggie-roll-25",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 58.88,
"currency": "USD",
"foodCategoryId": 27,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-25/640/480",
"createdAt": "2026-03-20T21:02:35.305Z"
},
{
"id": 26,
"menuId": 3,
"name": "Herb-Crusted Chicken Tacos",
"slug": "herb-crusted-chicken-tacos-26",
"description": "A crowd-pleasing selection that never disappoints.",
"price": 40.55,
"currency": "USD",
"foodCategoryId": 21,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-26/640/480",
"createdAt": "2025-01-19T01:57:26.488Z"
},
{
"id": 27,
"menuId": 3,
"name": "Seasonal Salmon Bowl",
"slug": "seasonal-salmon-bowl-27",
"description": "Rich flavors layered with care by our kitchen team.",
"price": 52.95,
"currency": "USD",
"foodCategoryId": 5,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-27/640/480",
"createdAt": "2025-11-17T05:40:22.079Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=2&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=3&limit=24",
"prev": "/api/v1/menu-items?page=1&limit=24"
}
}