menu-items
menu-items
Page 6 of 61.
Overview
-
Spicy Cheese Steak
#121
Garnished with fresh herbs and a side of dipping sauce.
-
Tangy Shrimp Roll
#122
Inspired by traditional recipes with a modern twist.
-
Spicy Tempeh Tacos
#123
Finished with a drizzle of extra virgin olive oil.
-
Garden Cod Steak
#124
A hearty choice for those who love bold, satisfying meals.
-
Spicy Pork Platter
#125
Light and refreshing with a hint of citrus and herbs.
-
Braised Duck Wrap
#126
Made fresh to order with the finest quality ingredients.
-
Chef's Duck Burger
#127
Served with seasonal sides and house-made sauce.
-
Chef's Salmon Pizza
#128
Slow-cooked to perfection with aromatic herbs and spices.
-
Classic Lobster Salad
#129
Perfectly balanced with textures and complementary flavors.
-
Glazed Shrimp Pizza
#130
Inspired by traditional recipes with a modern twist.
-
Crispy Chicken Risotto
#131
Finished with a drizzle of extra virgin olive oil.
-
Tangy Scallops Pizza
#132
A hearty choice for those who love bold, satisfying meals.
-
Butter-Poached Tuna Flatbread
#133
Garnished with fresh herbs and a side of dipping sauce.
-
Braised Beef Bowl
#134
A hearty choice for those who love bold, satisfying meals.
-
Tangy Shrimp Soup
#135
Served with seasonal sides and house-made sauce.
-
Charcoal Lobster Steak
#136
Finished with a drizzle of extra virgin olive oil.
-
Butter-Poached Scallops Skewers
#137
Served with seasonal sides and house-made sauce.
-
Baked Crab Sandwich
#138
Finished with a drizzle of extra virgin olive oil.
-
Slow-Cooked Beef Pasta
#139
Garnished with fresh herbs and a side of dipping sauce.
-
Wood-Fired Turkey Burger
#140
Light and refreshing with a hint of citrus and herbs.
-
Herb-Crusted Lobster Fillet
#141
A hearty choice for those who love bold, satisfying meals.
-
Garden Tuna Curry
#142
Light and refreshing with a hint of citrus and herbs.
-
Signature Salmon Stir-Fry
#143
A light yet satisfying dish with vibrant flavors.
-
Classic Crab Pasta
#144
Garnished with fresh herbs and a side of dipping sauce.
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": 121,
"menuId": 14,
"name": "Spicy Cheese Steak",
"slug": "spicy-cheese-steak-121",
"description": "Garnished with fresh herbs and a side of dipping sauce.",
"price": 56.47,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-121/640/480",
"createdAt": "2025-01-12T12:47:52.179Z"
},
{
"id": 122,
"menuId": 14,
"name": "Tangy Shrimp Roll",
"slug": "tangy-shrimp-roll-122",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 44.94,
"currency": "USD",
"foodCategoryId": 7,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-122/640/480",
"createdAt": "2024-06-21T08:20:24.597Z"
},
{
"id": 123,
"menuId": 14,
"name": "Spicy Tempeh Tacos",
"slug": "spicy-tempeh-tacos-123",
"description": "Finished with a drizzle of extra virgin olive oil.",
"price": 67.63,
"currency": "USD",
"foodCategoryId": 30,
"spicyLevel": 1,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-123/640/480",
"createdAt": "2025-06-08T14:22:31.498Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=6&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=7&limit=24",
"prev": "/api/v1/menu-items?page=5&limit=24"
}
}