menu-items
menu-items
Page 25 of 61.
Overview
-
Slow-Cooked Turkey Salad
#577
A delightful blend of fresh ingredients and bold spices.
-
Tangy Duck Wrap
#578
Garnished with fresh herbs and a side of dipping sauce.
-
Fried Tuna Skewers
#579
Made fresh to order with the finest quality ingredients.
-
Steamed Beef Salad
#580
Served with seasonal sides and house-made sauce.
-
House Lamb Stir-Fry
#581
A light yet satisfying dish with vibrant flavors.
-
Chef's Scallops Burger
#582
A crowd-pleasing selection that never disappoints.
-
Wood-Fired Beef Sandwich
#583
A light yet satisfying dish with vibrant flavors.
-
Crispy Cod Wrap
#584
Served with seasonal sides and house-made sauce.
-
Savory Mushroom Pasta
#585
A delightful blend of fresh ingredients and bold spices.
-
Pan-Seared Cheese Salad
#586
Slow-cooked to perfection with aromatic herbs and spices.
-
Glazed Pork Tacos
#587
Light and refreshing with a hint of citrus and herbs.
-
Fire-Roasted Chicken Bowl
#588
A delightful blend of fresh ingredients and bold spices.
-
Tangy Salmon Pasta
#589
Inspired by traditional recipes with a modern twist.
-
Glazed Lamb Risotto
#590
A hearty choice for those who love bold, satisfying meals.
-
Butter-Poached Salmon Roll
#591
A hearty choice for those who love bold, satisfying meals.
-
Tangy Mushroom Risotto
#592
Inspired by traditional recipes with a modern twist.
-
Glazed Tofu Risotto
#593
Finished with a drizzle of extra virgin olive oil.
-
Savory Chicken Steak
#594
A customer favorite, crafted from locally sourced produce.
-
Fried Duck Wrap
#595
A light yet satisfying dish with vibrant flavors.
-
Charcoal Beef Skewers
#596
A hearty choice for those who love bold, satisfying meals.
-
Chef's Crab Flatbread
#597
Finished with a drizzle of extra virgin olive oil.
-
Charcoal Lamb Roll
#598
A customer favorite, crafted from locally sourced produce.
-
Slow-Cooked Salmon Platter
#599
Finished with a drizzle of extra virgin olive oil.
-
Pan-Seared Tempeh Stir-Fry
#600
Served with seasonal sides and house-made sauce.
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": 577,
"menuId": 60,
"name": "Slow-Cooked Turkey Salad",
"slug": "slow-cooked-turkey-salad-577",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 28.27,
"currency": "USD",
"foodCategoryId": 16,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-577/640/480",
"createdAt": "2025-02-13T11:51:57.372Z"
},
{
"id": 578,
"menuId": 61,
"name": "Tangy Duck Wrap",
"slug": "tangy-duck-wrap-578",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 66.39,
"currency": "USD",
"foodCategoryId": 10,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-578/640/480",
"createdAt": "2024-06-20T23:24:28.705Z"
},
{
"id": 579,
"menuId": 61,
"name": "Fried Tuna Skewers",
"slug": "fried-tuna-skewers-579",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 17.49,
"currency": "USD",
"foodCategoryId": 6,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-579/640/480",
"createdAt": "2024-12-31T20:23:28.475Z"
}
],
"meta": {
"page": 25,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=25&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=26&limit=24",
"prev": "/api/v1/menu-items?page=24&limit=24"
}
}