menu-items
menu-items
Page 56 of 61.
Overview
-
Steamed Shrimp Platter
#1321
Made fresh to order with the finest quality ingredients.
-
Fried Lobster Roll
#1322
Served with seasonal sides and house-made sauce.
-
Steamed Mushroom Steak
#1323
A customer favorite, crafted from locally sourced produce.
-
Garden Chicken Tacos
#1324
A light yet satisfying dish with vibrant flavors.
-
Steamed Chicken Curry
#1325
A customer favorite, crafted from locally sourced produce.
-
House Tuna Soup
#1326
A hearty choice for those who love bold, satisfying meals.
-
Glazed Cheese Fillet
#1327
Rich flavors layered with care by our kitchen team.
-
Braised Cheese Steak
#1328
Light and refreshing with a hint of citrus and herbs.
-
Fried Beef Fillet
#1329
Rich flavors layered with care by our kitchen team.
-
Fried Lobster Salad
#1330
Made fresh to order with the finest quality ingredients.
-
House Turkey Salad
#1331
A delightful blend of fresh ingredients and bold spices.
-
Tangy Tuna Steak
#1332
Topped with house-made salsa and a squeeze of fresh lime.
-
Butter-Poached Mushroom Fillet
#1333
Topped with house-made salsa and a squeeze of fresh lime.
-
House Turkey Pizza
#1334
Light and refreshing with a hint of citrus and herbs.
-
Braised Turkey Pizza
#1335
A light yet satisfying dish with vibrant flavors.
-
Chef's Tuna Sandwich
#1336
Light and refreshing with a hint of citrus and herbs.
-
Tangy Tempeh Tacos
#1337
Served with seasonal sides and house-made sauce.
-
Chef's Salmon Roll
#1338
Slow-cooked to perfection with aromatic herbs and spices.
-
Tangy Shrimp Platter
#1339
Slow-cooked to perfection with aromatic herbs and spices.
-
Butter-Poached Salmon Soup
#1340
Light and refreshing with a hint of citrus and herbs.
-
Slow-Cooked Veggie Pizza
#1341
Made fresh to order with the finest quality ingredients.
-
Spicy Tofu Bowl
#1342
Finished with a drizzle of extra virgin olive oil.
-
Tangy Shrimp Sandwich
#1343
Topped with house-made salsa and a squeeze of fresh lime.
-
Herb-Crusted Duck Pizza
#1344
Garnished with fresh herbs and a side of dipping 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": 1321,
"menuId": 140,
"name": "Steamed Shrimp Platter",
"slug": "steamed-shrimp-platter-1321",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 19.04,
"currency": "USD",
"foodCategoryId": 15,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-1321/640/480",
"createdAt": "2026-04-03T11:28:26.808Z"
},
{
"id": 1322,
"menuId": 140,
"name": "Fried Lobster Roll",
"slug": "fried-lobster-roll-1322",
"description": "Served with seasonal sides and house-made sauce.",
"price": 40.6,
"currency": "USD",
"foodCategoryId": 19,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1322/640/480",
"createdAt": "2024-08-16T14:57:54.616Z"
},
{
"id": 1323,
"menuId": 140,
"name": "Steamed Mushroom Steak",
"slug": "steamed-mushroom-steak-1323",
"description": "A customer favorite, crafted from locally sourced produce.",
"price": 26.04,
"currency": "USD",
"foodCategoryId": 1,
"spicyLevel": 3,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-1323/640/480",
"createdAt": "2024-06-08T09:27:26.712Z"
}
],
"meta": {
"page": 56,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=56&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=57&limit=24",
"prev": "/api/v1/menu-items?page=55&limit=24"
}
}