menu-items
menu-items
Page 55 of 61.
Overview
-
Savory Duck Skewers
#1297
Topped with house-made salsa and a squeeze of fresh lime.
-
Pan-Seared Tempeh Steak
#1298
A delightful blend of fresh ingredients and bold spices.
-
Fried Shrimp Flatbread
#1299
A customer favorite, crafted from locally sourced produce.
-
Tangy Beef Tacos
#1300
A crowd-pleasing selection that never disappoints.
-
Grilled Mushroom Platter
#1301
A delightful blend of fresh ingredients and bold spices.
-
Steamed Tuna Curry
#1302
Served with seasonal sides and house-made sauce.
-
Glazed Salmon Skewers
#1303
Made fresh to order with the finest quality ingredients.
-
Savory Lobster Tacos
#1304
A crowd-pleasing selection that never disappoints.
-
Wood-Fired Shrimp Sandwich
#1305
Finished with a drizzle of extra virgin olive oil.
-
House Beef Burger
#1306
A light yet satisfying dish with vibrant flavors.
-
Chef's Mushroom Soup
#1307
Light and refreshing with a hint of citrus and herbs.
-
Charcoal Salmon Bowl
#1308
Perfectly balanced with textures and complementary flavors.
-
Chef's Lamb Platter
#1309
A light yet satisfying dish with vibrant flavors.
-
Charcoal Tuna Wrap
#1310
A hearty choice for those who love bold, satisfying meals.
-
Butter-Poached Lamb Burger
#1311
A hearty choice for those who love bold, satisfying meals.
-
Savory Tuna Soup
#1312
A crowd-pleasing selection that never disappoints.
-
Classic Veggie Fillet
#1313
Made fresh to order with the finest quality ingredients.
-
Fried Turkey Soup
#1314
Slow-cooked to perfection with aromatic herbs and spices.
-
Signature Pork Soup
#1315
Light and refreshing with a hint of citrus and herbs.
-
Roasted Tuna Sandwich
#1316
Topped with house-made salsa and a squeeze of fresh lime.
-
Steamed Tempeh Platter
#1317
A customer favorite, crafted from locally sourced produce.
-
Pan-Seared Mushroom Fillet
#1318
Perfectly balanced with textures and complementary flavors.
-
Baked Scallops Platter
#1319
Rich flavors layered with care by our kitchen team.
-
Charcoal Cheese Stir-Fry
#1320
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": 1297,
"menuId": 138,
"name": "Savory Duck Skewers",
"slug": "savory-duck-skewers-1297",
"description": "Topped with house-made salsa and a squeeze of fresh lime.",
"price": 77.6,
"currency": "USD",
"foodCategoryId": 24,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1297/640/480",
"createdAt": "2025-01-05T15:23:15.680Z"
},
{
"id": 1298,
"menuId": 138,
"name": "Pan-Seared Tempeh Steak",
"slug": "pan-seared-tempeh-steak-1298",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 54.14,
"currency": "USD",
"foodCategoryId": 26,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1298/640/480",
"createdAt": "2026-04-13T19:44:45.961Z"
},
{
"id": 1299,
"menuId": 138,
"name": "Fried Shrimp Flatbread",
"slug": "fried-shrimp-flatbread-1299",
"description": "A customer favorite, crafted from locally sourced produce.",
"price": 27.64,
"currency": "USD",
"foodCategoryId": 12,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1299/640/480",
"createdAt": "2025-09-08T15:09:16.579Z"
}
],
"meta": {
"page": 55,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=55&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=56&limit=24",
"prev": "/api/v1/menu-items?page=54&limit=24"
}
}