menu-items
menu-items
Page 14 of 61.
Overview
-
Seasonal Crab Roll
#313
Perfectly balanced with textures and complementary flavors.
-
Chef's Tuna Steak
#314
Served with seasonal sides and house-made sauce.
-
Smoked Cod Steak
#315
Slow-cooked to perfection with aromatic herbs and spices.
-
Fried Pork Salad
#316
Inspired by traditional recipes with a modern twist.
-
Signature Scallops Pasta
#317
Garnished with fresh herbs and a side of dipping sauce.
-
Smoked Duck Pizza
#318
A customer favorite, crafted from locally sourced produce.
-
Tangy Cod Stir-Fry
#319
A customer favorite, crafted from locally sourced produce.
-
Herb-Crusted Salmon Pasta
#320
Perfectly balanced with textures and complementary flavors.
-
Signature Tofu Steak
#321
A light yet satisfying dish with vibrant flavors.
-
House Scallops Wrap
#322
A light yet satisfying dish with vibrant flavors.
-
Roasted Tofu Pizza
#323
Made fresh to order with the finest quality ingredients.
-
Garden Tofu Pizza
#324
Topped with house-made salsa and a squeeze of fresh lime.
-
Steamed Shrimp Burger
#325
A light yet satisfying dish with vibrant flavors.
-
Pan-Seared Lobster Salad
#326
Rich flavors layered with care by our kitchen team.
-
Steamed Mushroom Roll
#327
A hearty choice for those who love bold, satisfying meals.
-
Roasted Tempeh Roll
#328
A hearty choice for those who love bold, satisfying meals.
-
Grilled Pork Steak
#329
Slow-cooked to perfection with aromatic herbs and spices.
-
Smoked Tofu Roll
#330
Garnished with fresh herbs and a side of dipping sauce.
-
Fried Duck Platter
#331
Inspired by traditional recipes with a modern twist.
-
Wood-Fired Pork Wrap
#332
A light yet satisfying dish with vibrant flavors.
-
Herb-Crusted Veggie Stir-Fry
#333
Inspired by traditional recipes with a modern twist.
-
Chef's Tofu Steak
#334
Light and refreshing with a hint of citrus and herbs.
-
Garden Lobster Wrap
#335
A hearty choice for those who love bold, satisfying meals.
-
Spicy Mushroom Pasta
#336
Perfectly balanced with textures and complementary 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": 313,
"menuId": 31,
"name": "Seasonal Crab Roll",
"slug": "seasonal-crab-roll-313",
"description": "Perfectly balanced with textures and complementary flavors.",
"price": 6.73,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-313/640/480",
"createdAt": "2024-09-07T02:27:05.297Z"
},
{
"id": 314,
"menuId": 31,
"name": "Chef's Tuna Steak",
"slug": "chef-s-tuna-steak-314",
"description": "Served with seasonal sides and house-made sauce.",
"price": 10.27,
"currency": "USD",
"foodCategoryId": 30,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-314/640/480",
"createdAt": "2025-03-25T04:59:58.792Z"
},
{
"id": 315,
"menuId": 31,
"name": "Smoked Cod Steak",
"slug": "smoked-cod-steak-315",
"description": "Slow-cooked to perfection with aromatic herbs and spices.",
"price": 5,
"currency": "USD",
"foodCategoryId": 26,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-315/640/480",
"createdAt": "2025-10-08T10:28:08.038Z"
}
],
"meta": {
"page": 14,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=14&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=15&limit=24",
"prev": "/api/v1/menu-items?page=13&limit=24"
}
}