menu-items
menu-items
Page 44 of 61.
Overview
-
Pan-Seared Lobster Pasta
#1033
Inspired by traditional recipes with a modern twist.
-
Butter-Poached Tuna Salad
#1034
Garnished with fresh herbs and a side of dipping sauce.
-
Wood-Fired Mushroom Steak
#1035
A hearty choice for those who love bold, satisfying meals.
-
Grilled Chicken Burger
#1036
A hearty choice for those who love bold, satisfying meals.
-
Fried Veggie Roll
#1037
Perfectly balanced with textures and complementary flavors.
-
Braised Cod Fillet
#1038
A delightful blend of fresh ingredients and bold spices.
-
Slow-Cooked Beef Soup
#1039
A delightful blend of fresh ingredients and bold spices.
-
Wood-Fired Tuna Sandwich
#1040
A customer favorite, crafted from locally sourced produce.
-
Pan-Seared Chicken Bowl
#1041
A hearty choice for those who love bold, satisfying meals.
-
House Cheese Pizza
#1042
A crowd-pleasing selection that never disappoints.
-
Wood-Fired Cod Platter
#1043
Garnished with fresh herbs and a side of dipping sauce.
-
Glazed Cod Curry
#1044
Rich flavors layered with care by our kitchen team.
-
House Lobster Stir-Fry
#1045
Finished with a drizzle of extra virgin olive oil.
-
Baked Tuna Platter
#1046
Served with seasonal sides and house-made sauce.
-
Baked Shrimp Burger
#1047
A light yet satisfying dish with vibrant flavors.
-
Crispy Chicken Bowl
#1048
Served with seasonal sides and house-made sauce.
-
Fried Lobster Steak
#1049
Made fresh to order with the finest quality ingredients.
-
Charcoal Pork Flatbread
#1050
Slow-cooked to perfection with aromatic herbs and spices.
-
Glazed Scallops Tacos
#1051
Inspired by traditional recipes with a modern twist.
-
Grilled Duck Flatbread
#1052
Garnished with fresh herbs and a side of dipping sauce.
-
Garden Scallops Burger
#1053
Rich flavors layered with care by our kitchen team.
-
Seasonal Lamb Roll
#1054
A hearty choice for those who love bold, satisfying meals.
-
Roasted Lamb Soup
#1055
Rich flavors layered with care by our kitchen team.
-
Chef's Shrimp Burger
#1056
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": 1033,
"menuId": 109,
"name": "Pan-Seared Lobster Pasta",
"slug": "pan-seared-lobster-pasta-1033",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 14.36,
"currency": "USD",
"foodCategoryId": 16,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-1033/640/480",
"createdAt": "2024-09-10T19:16:36.934Z"
},
{
"id": 1034,
"menuId": 109,
"name": "Butter-Poached Tuna Salad",
"slug": "butter-poached-tuna-salad-1034",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 44.86,
"currency": "USD",
"foodCategoryId": 23,
"spicyLevel": 3,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1034/640/480",
"createdAt": "2026-02-22T17:15:39.419Z"
},
{
"id": 1035,
"menuId": 109,
"name": "Wood-Fired Mushroom Steak",
"slug": "wood-fired-mushroom-steak-1035",
"description": "A hearty choice for those who love bold, satisfying meals.",
"price": 8.65,
"currency": "USD",
"foodCategoryId": 3,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-1035/640/480",
"createdAt": "2024-10-03T07:23:08.010Z"
}
],
"meta": {
"page": 44,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=44&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=45&limit=24",
"prev": "/api/v1/menu-items?page=43&limit=24"
}
}