menu-items
menu-items
Page 61 of 61.
Overview
-
Charcoal Lamb Skewers
#1441
Topped with house-made salsa and a squeeze of fresh lime.
-
Steamed Scallops Curry
#1442
Inspired by traditional recipes with a modern twist.
-
Signature Lobster Tacos
#1443
A hearty choice for those who love bold, satisfying meals.
-
House Turkey Pasta
#1444
A hearty choice for those who love bold, satisfying meals.
-
Braised Lobster Pasta
#1445
Slow-cooked to perfection with aromatic herbs and spices.
-
Fire-Roasted Turkey Pasta
#1446
A delightful blend of fresh ingredients and bold spices.
-
Wood-Fired Tempeh Tacos
#1447
Perfectly balanced with textures and complementary flavors.
-
Wood-Fired Turkey Pizza
#1448
Light and refreshing with a hint of citrus and herbs.
-
Crispy Lobster Platter
#1449
Made fresh to order with the finest quality ingredients.
-
Roasted Veggie Steak
#1450
Light and refreshing with a hint of citrus and herbs.
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": 1441,
"menuId": 154,
"name": "Charcoal Lamb Skewers",
"slug": "charcoal-lamb-skewers-1441",
"description": "Topped with house-made salsa and a squeeze of fresh lime.",
"price": 7.55,
"currency": "USD",
"foodCategoryId": 22,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1441/640/480",
"createdAt": "2025-09-16T19:54:34.758Z"
},
{
"id": 1442,
"menuId": 154,
"name": "Steamed Scallops Curry",
"slug": "steamed-scallops-curry-1442",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 35.77,
"currency": "USD",
"foodCategoryId": 17,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1442/640/480",
"createdAt": "2024-09-14T23:40:02.358Z"
},
{
"id": 1443,
"menuId": 154,
"name": "Signature Lobster Tacos",
"slug": "signature-lobster-tacos-1443",
"description": "A hearty choice for those who love bold, satisfying meals.",
"price": 63.95,
"currency": "USD",
"foodCategoryId": 4,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1443/640/480",
"createdAt": "2025-04-03T06:46:34.477Z"
}
],
"meta": {
"page": 61,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=61&limit=24",
"first": "/api/v1/menu-items?page=1&limit=24",
"last": "/api/v1/menu-items?page=61&limit=24",
"next": null,
"prev": "/api/v1/menu-items?page=60&limit=24"
}
}