menu-items
menu-items
Page 19 of 61.
Overview
-
Garden Cod Platter
#433
A crowd-pleasing selection that never disappoints.
-
Smoked Salmon Sandwich
#434
Perfectly balanced with textures and complementary flavors.
-
Spicy Lobster Fillet
#435
A light yet satisfying dish with vibrant flavors.
-
Chef's Beef Bowl
#436
Made fresh to order with the finest quality ingredients.
-
Smoked Cod Fillet
#437
Finished with a drizzle of extra virgin olive oil.
-
Tangy Cod Pasta
#438
Inspired by traditional recipes with a modern twist.
-
Smoked Pork Curry
#439
A hearty choice for those who love bold, satisfying meals.
-
Signature Beef Steak
#440
Light and refreshing with a hint of citrus and herbs.
-
Glazed Cod Steak
#441
Slow-cooked to perfection with aromatic herbs and spices.
-
Classic Chicken Soup
#442
A light yet satisfying dish with vibrant flavors.
-
Herb-Crusted Chicken Soup
#443
Served with seasonal sides and house-made sauce.
-
Slow-Cooked Lobster Roll
#444
Made fresh to order with the finest quality ingredients.
-
Crispy Mushroom Fillet
#445
A crowd-pleasing selection that never disappoints.
-
House Tuna Steak
#446
A crowd-pleasing selection that never disappoints.
-
Wood-Fired Crab Wrap
#447
Garnished with fresh herbs and a side of dipping sauce.
-
Braised Salmon Pasta
#448
A customer favorite, crafted from locally sourced produce.
-
Smoked Lobster Stir-Fry
#449
Rich flavors layered with care by our kitchen team.
-
Chef's Cod Bowl
#450
A delightful blend of fresh ingredients and bold spices.
-
Savory Shrimp Pizza
#451
Topped with house-made salsa and a squeeze of fresh lime.
-
Smoked Turkey Pizza
#452
Finished with a drizzle of extra virgin olive oil.
-
Chef's Veggie Stir-Fry
#453
Finished with a drizzle of extra virgin olive oil.
-
Charcoal Tofu Flatbread
#454
Perfectly balanced with textures and complementary flavors.
-
Butter-Poached Lobster Soup
#455
A hearty choice for those who love bold, satisfying meals.
-
Spicy Cod Platter
#456
A customer favorite, crafted from locally sourced produce.
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": 433,
"menuId": 45,
"name": "Garden Cod Platter",
"slug": "garden-cod-platter-433",
"description": "A crowd-pleasing selection that never disappoints.",
"price": 41.8,
"currency": "USD",
"foodCategoryId": 25,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-433/640/480",
"createdAt": "2025-11-01T05:48:25.509Z"
},
{
"id": 434,
"menuId": 45,
"name": "Smoked Salmon Sandwich",
"slug": "smoked-salmon-sandwich-434",
"description": "Perfectly balanced with textures and complementary flavors.",
"price": 12.59,
"currency": "USD",
"foodCategoryId": 9,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-434/640/480",
"createdAt": "2025-08-24T21:23:07.576Z"
},
{
"id": 435,
"menuId": 45,
"name": "Spicy Lobster Fillet",
"slug": "spicy-lobster-fillet-435",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 75.39,
"currency": "USD",
"foodCategoryId": 3,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-435/640/480",
"createdAt": "2024-07-20T16:32:44.076Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=19&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=20&limit=24",
"prev": "/api/v1/menu-items?page=18&limit=24"
}
}