menu-items
menu-items
Page 27 of 61.
Overview
-
Roasted Scallops Platter
#625
A delightful blend of fresh ingredients and bold spices.
-
Wood-Fired Turkey Soup
#626
A delightful blend of fresh ingredients and bold spices.
-
Chef's Crab Platter
#627
Light and refreshing with a hint of citrus and herbs.
-
House Duck Burger
#628
Garnished with fresh herbs and a side of dipping sauce.
-
Classic Shrimp Sandwich
#629
Garnished with fresh herbs and a side of dipping sauce.
-
Butter-Poached Cod Fillet
#630
Light and refreshing with a hint of citrus and herbs.
-
Fire-Roasted Tuna Skewers
#631
Served with seasonal sides and house-made sauce.
-
Steamed Salmon Platter
#632
Garnished with fresh herbs and a side of dipping sauce.
-
Fire-Roasted Tuna Sandwich
#633
Inspired by traditional recipes with a modern twist.
-
Slow-Cooked Pork Soup
#634
Served with seasonal sides and house-made sauce.
-
Signature Lamb Pasta
#635
Made fresh to order with the finest quality ingredients.
-
Grilled Lamb Roll
#636
Served with seasonal sides and house-made sauce.
-
Baked Pork Sandwich
#637
Light and refreshing with a hint of citrus and herbs.
-
Glazed Salmon Pasta
#638
A light yet satisfying dish with vibrant flavors.
-
Glazed Crab Fillet
#639
Served with seasonal sides and house-made sauce.
-
Spicy Pork Pasta
#640
Topped with house-made salsa and a squeeze of fresh lime.
-
House Tuna Sandwich
#641
A hearty choice for those who love bold, satisfying meals.
-
Wood-Fired Turkey Soup
#642
A delightful blend of fresh ingredients and bold spices.
-
Chef's Duck Tacos
#643
Served with seasonal sides and house-made sauce.
-
Classic Crab Salad
#644
Garnished with fresh herbs and a side of dipping sauce.
-
Baked Scallops Bowl
#645
Slow-cooked to perfection with aromatic herbs and spices.
-
Classic Beef Roll
#646
Slow-cooked to perfection with aromatic herbs and spices.
-
Fire-Roasted Pork Fillet
#647
A hearty choice for those who love bold, satisfying meals.
-
Steamed Crab Burger
#648
Inspired by traditional recipes with a modern twist.
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": 625,
"menuId": 66,
"name": "Roasted Scallops Platter",
"slug": "roasted-scallops-platter-625",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 6.11,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 1,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-625/640/480",
"createdAt": "2025-09-18T20:19:54.837Z"
},
{
"id": 626,
"menuId": 66,
"name": "Wood-Fired Turkey Soup",
"slug": "wood-fired-turkey-soup-626",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 59.72,
"currency": "USD",
"foodCategoryId": 15,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-626/640/480",
"createdAt": "2024-12-18T12:54:23.103Z"
},
{
"id": 627,
"menuId": 66,
"name": "Chef's Crab Platter",
"slug": "chef-s-crab-platter-627",
"description": "Light and refreshing with a hint of citrus and herbs.",
"price": 5.52,
"currency": "USD",
"foodCategoryId": 8,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-627/640/480",
"createdAt": "2026-04-21T11:43:34.982Z"
}
],
"meta": {
"page": 27,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=27&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=28&limit=24",
"prev": "/api/v1/menu-items?page=26&limit=24"
}
}