menu-items
menu-items
Page 32 of 61.
Overview
-
Pan-Seared Tempeh Stir-Fry
#745
Topped with house-made salsa and a squeeze of fresh lime.
-
Fire-Roasted Duck Tacos
#746
Finished with a drizzle of extra virgin olive oil.
-
Slow-Cooked Tuna Salad
#747
A delightful blend of fresh ingredients and bold spices.
-
Smoked Pork Fillet
#748
Slow-cooked to perfection with aromatic herbs and spices.
-
Braised Cheese Wrap
#749
Inspired by traditional recipes with a modern twist.
-
Baked Lobster Burger
#750
Served with seasonal sides and house-made sauce.
-
Classic Pork Platter
#751
Perfectly balanced with textures and complementary flavors.
-
Baked Tofu Bowl
#752
A hearty choice for those who love bold, satisfying meals.
-
Spicy Beef Flatbread
#753
A customer favorite, crafted from locally sourced produce.
-
Grilled Beef Salad
#754
Perfectly balanced with textures and complementary flavors.
-
Steamed Tempeh Bowl
#755
Made fresh to order with the finest quality ingredients.
-
Glazed Tuna Sandwich
#756
Made fresh to order with the finest quality ingredients.
-
Glazed Lamb Skewers
#757
Topped with house-made salsa and a squeeze of fresh lime.
-
Seasonal Tempeh Flatbread
#758
Perfectly balanced with textures and complementary flavors.
-
Tangy Shrimp Stir-Fry
#759
A customer favorite, crafted from locally sourced produce.
-
Grilled Duck Risotto
#760
Served with seasonal sides and house-made sauce.
-
Fire-Roasted Tuna Roll
#761
Perfectly balanced with textures and complementary flavors.
-
Wood-Fired Beef Sandwich
#762
Served with seasonal sides and house-made sauce.
-
Fried Duck Flatbread
#763
A light yet satisfying dish with vibrant flavors.
-
Signature Veggie Steak
#764
Served with seasonal sides and house-made sauce.
-
Baked Lobster Flatbread
#765
Garnished with fresh herbs and a side of dipping sauce.
-
Chef's Pork Soup
#766
A hearty choice for those who love bold, satisfying meals.
-
Butter-Poached Veggie Sandwich
#767
Served with seasonal sides and house-made sauce.
-
Fire-Roasted Veggie Sandwich
#768
A customer favorite, crafted from locally sourced produce.
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": 745,
"menuId": 77,
"name": "Pan-Seared Tempeh Stir-Fry",
"slug": "pan-seared-tempeh-stir-fry-745",
"description": "Topped with house-made salsa and a squeeze of fresh lime.",
"price": 57.3,
"currency": "USD",
"foodCategoryId": 12,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-745/640/480",
"createdAt": "2024-06-25T02:15:35.190Z"
},
{
"id": 746,
"menuId": 78,
"name": "Fire-Roasted Duck Tacos",
"slug": "fire-roasted-duck-tacos-746",
"description": "Finished with a drizzle of extra virgin olive oil.",
"price": 33.22,
"currency": "USD",
"foodCategoryId": 25,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-746/640/480",
"createdAt": "2025-03-28T13:48:18.056Z"
},
{
"id": 747,
"menuId": 78,
"name": "Slow-Cooked Tuna Salad",
"slug": "slow-cooked-tuna-salad-747",
"description": "A delightful blend of fresh ingredients and bold spices.",
"price": 29.86,
"currency": "USD",
"foodCategoryId": 22,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-747/640/480",
"createdAt": "2024-12-16T17:35:28.289Z"
}
],
"meta": {
"page": 32,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=32&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=33&limit=24",
"prev": "/api/v1/menu-items?page=31&limit=24"
}
}