menu-items
menu-items
Page 60 of 61.
Overview
-
Crispy Lobster Roll
#1417
Rich flavors layered with care by our kitchen team.
-
Steamed Beef Burger
#1418
Perfectly balanced with textures and complementary flavors.
-
Butter-Poached Scallops Pasta
#1419
Made fresh to order with the finest quality ingredients.
-
Classic Shrimp Curry
#1420
Light and refreshing with a hint of citrus and herbs.
-
Smoked Mushroom Risotto
#1421
Perfectly balanced with textures and complementary flavors.
-
Fried Cod Pasta
#1422
Made fresh to order with the finest quality ingredients.
-
Baked Mushroom Skewers
#1423
Finished with a drizzle of extra virgin olive oil.
-
Roasted Lobster Bowl
#1424
A hearty choice for those who love bold, satisfying meals.
-
Steamed Cod Stir-Fry
#1425
A delightful blend of fresh ingredients and bold spices.
-
Charcoal Cheese Platter
#1426
Rich flavors layered with care by our kitchen team.
-
Fried Lamb Curry
#1427
A customer favorite, crafted from locally sourced produce.
-
House Cod Pizza
#1428
Light and refreshing with a hint of citrus and herbs.
-
Smoked Chicken Salad
#1429
A crowd-pleasing selection that never disappoints.
-
Fried Pork Tacos
#1430
Garnished with fresh herbs and a side of dipping sauce.
-
Slow-Cooked Duck Steak
#1431
Garnished with fresh herbs and a side of dipping sauce.
-
Spicy Crab Steak
#1432
A customer favorite, crafted from locally sourced produce.
-
Fire-Roasted Tuna Salad
#1433
Light and refreshing with a hint of citrus and herbs.
-
Braised Turkey Risotto
#1434
A delightful blend of fresh ingredients and bold spices.
-
Grilled Cheese Pizza
#1435
A hearty choice for those who love bold, satisfying meals.
-
Signature Salmon Platter
#1436
A delightful blend of fresh ingredients and bold spices.
-
Steamed Chicken Pasta
#1437
Finished with a drizzle of extra virgin olive oil.
-
Seasonal Shrimp Pasta
#1438
A delightful blend of fresh ingredients and bold spices.
-
Smoked Tuna Steak
#1439
Rich flavors layered with care by our kitchen team.
-
Savory Cod Skewers
#1440
Served with seasonal sides and house-made 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": 1417,
"menuId": 152,
"name": "Crispy Lobster Roll",
"slug": "crispy-lobster-roll-1417",
"description": "Rich flavors layered with care by our kitchen team.",
"price": 20.71,
"currency": "USD",
"foodCategoryId": 3,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1417/640/480",
"createdAt": "2024-12-18T02:02:02.879Z"
},
{
"id": 1418,
"menuId": 152,
"name": "Steamed Beef Burger",
"slug": "steamed-beef-burger-1418",
"description": "Perfectly balanced with textures and complementary flavors.",
"price": 69.42,
"currency": "USD",
"foodCategoryId": 29,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1418/640/480",
"createdAt": "2025-09-08T03:08:00.707Z"
},
{
"id": 1419,
"menuId": 152,
"name": "Butter-Poached Scallops Pasta",
"slug": "butter-poached-scallops-pasta-1419",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 30.66,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 3,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1419/640/480",
"createdAt": "2026-01-08T06:13:07.550Z"
}
],
"meta": {
"page": 60,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=60&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=61&limit=24",
"prev": "/api/v1/menu-items?page=59&limit=24"
}
}