menu-items
menu-items
Page 28 of 61.
Overview
-
Smoked Beef Flatbread
#649
Light and refreshing with a hint of citrus and herbs.
-
Slow-Cooked Cod Flatbread
#650
Served with seasonal sides and house-made sauce.
-
Crispy Cod Pasta
#651
Light and refreshing with a hint of citrus and herbs.
-
Baked Beef Curry
#652
Inspired by traditional recipes with a modern twist.
-
Pan-Seared Shrimp Skewers
#653
Inspired by traditional recipes with a modern twist.
-
Charcoal Beef Pasta
#654
Finished with a drizzle of extra virgin olive oil.
-
Smoked Duck Pasta
#655
Garnished with fresh herbs and a side of dipping sauce.
-
Crispy Crab Tacos
#656
Finished with a drizzle of extra virgin olive oil.
-
Pan-Seared Tempeh Wrap
#657
Topped with house-made salsa and a squeeze of fresh lime.
-
Classic Beef Salad
#658
Perfectly balanced with textures and complementary flavors.
-
Butter-Poached Lamb Fillet
#659
Topped with house-made salsa and a squeeze of fresh lime.
-
Garden Lamb Stir-Fry
#660
Light and refreshing with a hint of citrus and herbs.
-
Glazed Tempeh Platter
#661
A light yet satisfying dish with vibrant flavors.
-
Tangy Cheese Pasta
#662
Inspired by traditional recipes with a modern twist.
-
Charcoal Salmon Soup
#663
Rich flavors layered with care by our kitchen team.
-
Smoked Cod Fillet
#664
A light yet satisfying dish with vibrant flavors.
-
Signature Turkey Skewers
#665
Slow-cooked to perfection with aromatic herbs and spices.
-
Braised Mushroom Skewers
#666
Perfectly balanced with textures and complementary flavors.
-
Braised Salmon Stir-Fry
#667
Rich flavors layered with care by our kitchen team.
-
Savory Tempeh Bowl
#668
Inspired by traditional recipes with a modern twist.
-
Braised Mushroom Flatbread
#669
Garnished with fresh herbs and a side of dipping sauce.
-
Crispy Lobster Pasta
#670
Topped with house-made salsa and a squeeze of fresh lime.
-
Savory Mushroom Pizza
#671
Finished with a drizzle of extra virgin olive oil.
-
Braised Shrimp Pizza
#672
Rich flavors layered with care by our kitchen team.
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": 649,
"menuId": 68,
"name": "Smoked Beef Flatbread",
"slug": "smoked-beef-flatbread-649",
"description": "Light and refreshing with a hint of citrus and herbs.",
"price": 78,
"currency": "USD",
"foodCategoryId": 9,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-649/640/480",
"createdAt": "2024-06-04T11:13:42.084Z"
},
{
"id": 650,
"menuId": 68,
"name": "Slow-Cooked Cod Flatbread",
"slug": "slow-cooked-cod-flatbread-650",
"description": "Served with seasonal sides and house-made sauce.",
"price": 51,
"currency": "USD",
"foodCategoryId": 2,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-650/640/480",
"createdAt": "2024-11-15T01:35:54.098Z"
},
{
"id": 651,
"menuId": 68,
"name": "Crispy Cod Pasta",
"slug": "crispy-cod-pasta-651",
"description": "Light and refreshing with a hint of citrus and herbs.",
"price": 66.45,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 2,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-651/640/480",
"createdAt": "2025-07-10T10:01:58.197Z"
}
],
"meta": {
"page": 28,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=28&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=29&limit=24",
"prev": "/api/v1/menu-items?page=27&limit=24"
}
}