menu-items
menu-items
Page 12 of 61.
Overview
-
Garden Crab Salad
#265
A light yet satisfying dish with vibrant flavors.
-
Slow-Cooked Cheese Curry
#266
Topped with house-made salsa and a squeeze of fresh lime.
-
Wood-Fired Turkey Pizza
#267
Inspired by traditional recipes with a modern twist.
-
Baked Veggie Steak
#268
Topped with house-made salsa and a squeeze of fresh lime.
-
Baked Chicken Pizza
#269
A hearty choice for those who love bold, satisfying meals.
-
Crispy Shrimp Pasta
#270
Made fresh to order with the finest quality ingredients.
-
Grilled Mushroom Curry
#271
A delightful blend of fresh ingredients and bold spices.
-
Baked Veggie Tacos
#272
A light yet satisfying dish with vibrant flavors.
-
Smoked Chicken Tacos
#273
Served with seasonal sides and house-made sauce.
-
Garden Tuna Tacos
#274
Made fresh to order with the finest quality ingredients.
-
Seasonal Chicken Wrap
#275
Finished with a drizzle of extra virgin olive oil.
-
Charcoal Crab Flatbread
#276
Made fresh to order with the finest quality ingredients.
-
Steamed Salmon Stir-Fry
#277
A crowd-pleasing selection that never disappoints.
-
Butter-Poached Shrimp Flatbread
#278
Inspired by traditional recipes with a modern twist.
-
Slow-Cooked Mushroom Soup
#279
Served with seasonal sides and house-made sauce.
-
Slow-Cooked Tempeh Pasta
#280
A light yet satisfying dish with vibrant flavors.
-
Signature Salmon Flatbread
#281
A delightful blend of fresh ingredients and bold spices.
-
Slow-Cooked Crab Flatbread
#282
Finished with a drizzle of extra virgin olive oil.
-
Steamed Cheese Roll
#283
A crowd-pleasing selection that never disappoints.
-
Fire-Roasted Cheese Curry
#284
Made fresh to order with the finest quality ingredients.
-
Tangy Tempeh Platter
#285
Perfectly balanced with textures and complementary flavors.
-
Slow-Cooked Beef Skewers
#286
Served with seasonal sides and house-made sauce.
-
Charcoal Beef Stir-Fry
#287
Finished with a drizzle of extra virgin olive oil.
-
Fried Tempeh Sandwich
#288
A light yet satisfying dish with vibrant flavors.
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": 265,
"menuId": 27,
"name": "Garden Crab Salad",
"slug": "garden-crab-salad-265",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 27.81,
"currency": "USD",
"foodCategoryId": 13,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-265/640/480",
"createdAt": "2025-03-12T12:18:32.860Z"
},
{
"id": 266,
"menuId": 27,
"name": "Slow-Cooked Cheese Curry",
"slug": "slow-cooked-cheese-curry-266",
"description": "Topped with house-made salsa and a squeeze of fresh lime.",
"price": 48.91,
"currency": "USD",
"foodCategoryId": 7,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-266/640/480",
"createdAt": "2025-10-30T07:57:22.496Z"
},
{
"id": 267,
"menuId": 27,
"name": "Wood-Fired Turkey Pizza",
"slug": "wood-fired-turkey-pizza-267",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 20.34,
"currency": "USD",
"foodCategoryId": 29,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-267/640/480",
"createdAt": "2025-06-23T22:20:45.558Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=12&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=13&limit=24",
"prev": "/api/v1/menu-items?page=11&limit=24"
}
}