menu-items
menu-items
Page 43 of 61.
Overview
-
Glazed Lobster Steak
#1009
A hearty choice for those who love bold, satisfying meals.
-
Glazed Beef Burger
#1010
Made fresh to order with the finest quality ingredients.
-
Tangy Tuna Soup
#1011
Rich flavors layered with care by our kitchen team.
-
Fire-Roasted Lobster Bowl
#1012
Slow-cooked to perfection with aromatic herbs and spices.
-
Fried Salmon Risotto
#1013
Perfectly balanced with textures and complementary flavors.
-
Signature Lamb Steak
#1014
A delightful blend of fresh ingredients and bold spices.
-
House Shrimp Sandwich
#1015
A delightful blend of fresh ingredients and bold spices.
-
Savory Scallops Salad
#1016
Perfectly balanced with textures and complementary flavors.
-
Wood-Fired Veggie Burger
#1017
Topped with house-made salsa and a squeeze of fresh lime.
-
Herb-Crusted Tuna Flatbread
#1018
A crowd-pleasing selection that never disappoints.
-
Baked Chicken Salad
#1019
Made fresh to order with the finest quality ingredients.
-
Spicy Salmon Salad
#1020
Finished with a drizzle of extra virgin olive oil.
-
Pan-Seared Lobster Tacos
#1021
Made fresh to order with the finest quality ingredients.
-
Braised Cheese Wrap
#1022
Rich flavors layered with care by our kitchen team.
-
Spicy Salmon Platter
#1023
Garnished with fresh herbs and a side of dipping sauce.
-
Chef's Mushroom Bowl
#1024
Garnished with fresh herbs and a side of dipping sauce.
-
Herb-Crusted Lamb Pizza
#1025
A crowd-pleasing selection that never disappoints.
-
Roasted Chicken Skewers
#1026
Rich flavors layered with care by our kitchen team.
-
Savory Chicken Wrap
#1027
Slow-cooked to perfection with aromatic herbs and spices.
-
Signature Beef Fillet
#1028
Garnished with fresh herbs and a side of dipping sauce.
-
Chef's Shrimp Pasta
#1029
Rich flavors layered with care by our kitchen team.
-
Fire-Roasted Salmon Roll
#1030
Served with seasonal sides and house-made sauce.
-
Chef's Scallops Pizza
#1031
Served with seasonal sides and house-made sauce.
-
Chef's Turkey Curry
#1032
A crowd-pleasing selection that never disappoints.
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": 1009,
"menuId": 106,
"name": "Glazed Lobster Steak",
"slug": "glazed-lobster-steak-1009",
"description": "A hearty choice for those who love bold, satisfying meals.",
"price": 53.8,
"currency": "USD",
"foodCategoryId": 28,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1009/640/480",
"createdAt": "2026-05-11T03:48:18.117Z"
},
{
"id": 1010,
"menuId": 107,
"name": "Glazed Beef Burger",
"slug": "glazed-beef-burger-1010",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 61.89,
"currency": "USD",
"foodCategoryId": 17,
"spicyLevel": 2,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-1010/640/480",
"createdAt": "2024-10-28T15:38:28.905Z"
},
{
"id": 1011,
"menuId": 107,
"name": "Tangy Tuna Soup",
"slug": "tangy-tuna-soup-1011",
"description": "Rich flavors layered with care by our kitchen team.",
"price": 74.6,
"currency": "USD",
"foodCategoryId": 12,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1011/640/480",
"createdAt": "2026-01-01T17:41:20.644Z"
}
],
"meta": {
"page": 43,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=43&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=44&limit=24",
"prev": "/api/v1/menu-items?page=42&limit=24"
}
}