menu-items
menu-items
Page 47 of 61.
Overview
-
Signature Duck Steak
#1105
A delightful blend of fresh ingredients and bold spices.
-
Steamed Turkey Pasta
#1106
Garnished with fresh herbs and a side of dipping sauce.
-
Herb-Crusted Cheese Pasta
#1107
A delightful blend of fresh ingredients and bold spices.
-
Spicy Turkey Wrap
#1108
Slow-cooked to perfection with aromatic herbs and spices.
-
Steamed Salmon Skewers
#1109
A crowd-pleasing selection that never disappoints.
-
Seasonal Lamb Soup
#1110
Inspired by traditional recipes with a modern twist.
-
Braised Chicken Wrap
#1111
Slow-cooked to perfection with aromatic herbs and spices.
-
Wood-Fired Duck Pizza
#1112
Made fresh to order with the finest quality ingredients.
-
Fried Lobster Platter
#1113
A delightful blend of fresh ingredients and bold spices.
-
Fire-Roasted Cheese Fillet
#1114
Rich flavors layered with care by our kitchen team.
-
Signature Beef Tacos
#1115
Slow-cooked to perfection with aromatic herbs and spices.
-
Smoked Tempeh Burger
#1116
Perfectly balanced with textures and complementary flavors.
-
Glazed Beef Fillet
#1117
Inspired by traditional recipes with a modern twist.
-
Chef's Lamb Wrap
#1118
Finished with a drizzle of extra virgin olive oil.
-
Wood-Fired Salmon Sandwich
#1119
A hearty choice for those who love bold, satisfying meals.
-
Herb-Crusted Tofu Pizza
#1120
Garnished with fresh herbs and a side of dipping sauce.
-
Steamed Scallops Bowl
#1121
Inspired by traditional recipes with a modern twist.
-
Savory Duck Tacos
#1122
A delightful blend of fresh ingredients and bold spices.
-
Chef's Mushroom Roll
#1123
Light and refreshing with a hint of citrus and herbs.
-
Smoked Mushroom Risotto
#1124
Garnished with fresh herbs and a side of dipping sauce.
-
Classic Mushroom Fillet
#1125
Made fresh to order with the finest quality ingredients.
-
Charcoal Pork Curry
#1126
A light yet satisfying dish with vibrant flavors.
-
Chef's Lamb Soup
#1127
A crowd-pleasing selection that never disappoints.
-
Smoked Duck Pasta
#1128
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": 1105,
"menuId": 118,
"name": "Signature Duck Steak",
"slug": "signature-duck-steak-1105",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 59.94,
"currency": "USD",
"foodCategoryId": 26,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1105/640/480",
"createdAt": "2024-11-30T19:07:04.138Z"
},
{
"id": 1106,
"menuId": 118,
"name": "Steamed Turkey Pasta",
"slug": "steamed-turkey-pasta-1106",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 17.03,
"currency": "USD",
"foodCategoryId": 1,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1106/640/480",
"createdAt": "2024-09-02T23:58:19.532Z"
},
{
"id": 1107,
"menuId": 119,
"name": "Herb-Crusted Cheese Pasta",
"slug": "herb-crusted-cheese-pasta-1107",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 27.51,
"currency": "USD",
"foodCategoryId": 21,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-1107/640/480",
"createdAt": "2024-10-15T12:02:08.763Z"
}
],
"meta": {
"page": 47,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=47&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=48&limit=24",
"prev": "/api/v1/menu-items?page=46&limit=24"
}
}