menu-items
menu-items
Page 20 of 61.
Overview
-
Smoked Mushroom Pasta
#457
A delightful blend of fresh ingredients and bold spices.
-
Savory Lobster Pizza
#458
Rich flavors layered with care by our kitchen team.
-
House Lamb Stir-Fry
#459
Made fresh to order with the finest quality ingredients.
-
Spicy Tuna Stir-Fry
#460
Topped with house-made salsa and a squeeze of fresh lime.
-
Seasonal Shrimp Stir-Fry
#461
A delightful blend of fresh ingredients and bold spices.
-
Slow-Cooked Salmon Pizza
#462
A delightful blend of fresh ingredients and bold spices.
-
Garden Cod Stir-Fry
#463
Light and refreshing with a hint of citrus and herbs.
-
Fried Pork Soup
#464
Finished with a drizzle of extra virgin olive oil.
-
Garden Tuna Pizza
#465
Inspired by traditional recipes with a modern twist.
-
Pan-Seared Mushroom Platter
#466
A hearty choice for those who love bold, satisfying meals.
-
Braised Tuna Salad
#467
Inspired by traditional recipes with a modern twist.
-
Fried Cheese Sandwich
#468
A hearty choice for those who love bold, satisfying meals.
-
Pan-Seared Beef Tacos
#469
Inspired by traditional recipes with a modern twist.
-
Fire-Roasted Crab Salad
#470
Finished with a drizzle of extra virgin olive oil.
-
Glazed Mushroom Sandwich
#471
Finished with a drizzle of extra virgin olive oil.
-
Tangy Shrimp Flatbread
#472
Light and refreshing with a hint of citrus and herbs.
-
Baked Lobster Burger
#473
Light and refreshing with a hint of citrus and herbs.
-
Roasted Cod Wrap
#474
Made fresh to order with the finest quality ingredients.
-
Butter-Poached Crab Roll
#475
A delightful blend of fresh ingredients and bold spices.
-
Butter-Poached Scallops Platter
#476
Finished with a drizzle of extra virgin olive oil.
-
Chef's Salmon Steak
#477
Finished with a drizzle of extra virgin olive oil.
-
Signature Salmon Burger
#478
A delightful blend of fresh ingredients and bold spices.
-
House Tuna Soup
#479
Light and refreshing with a hint of citrus and herbs.
-
Smoked Tofu Burger
#480
Perfectly balanced with textures and complementary flavors.
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": 457,
"menuId": 47,
"name": "Smoked Mushroom Pasta",
"slug": "smoked-mushroom-pasta-457",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 46.98,
"currency": "USD",
"foodCategoryId": 30,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-457/640/480",
"createdAt": "2024-12-10T01:01:47.544Z"
},
{
"id": 458,
"menuId": 47,
"name": "Savory Lobster Pizza",
"slug": "savory-lobster-pizza-458",
"description": "Rich flavors layered with care by our kitchen team.",
"price": 29.76,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-458/640/480",
"createdAt": "2026-01-14T22:55:00.992Z"
},
{
"id": 459,
"menuId": 47,
"name": "House Lamb Stir-Fry",
"slug": "house-lamb-stir-fry-459",
"description": "Made fresh to order with the finest quality ingredients.",
"price": 41,
"currency": "USD",
"foodCategoryId": 14,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-459/640/480",
"createdAt": "2024-12-01T06:05:27.798Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=20&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=21&limit=24",
"prev": "/api/v1/menu-items?page=19&limit=24"
}
}