menu-items
menu-items
Page 29 of 61.
Overview
-
Spicy Beef Tacos
#673
A crowd-pleasing selection that never disappoints.
-
Grilled Duck Skewers
#674
Inspired by traditional recipes with a modern twist.
-
Savory Beef Pasta
#675
A light yet satisfying dish with vibrant flavors.
-
Chef's Lobster Soup
#676
Inspired by traditional recipes with a modern twist.
-
Savory Crab Sandwich
#677
Light and refreshing with a hint of citrus and herbs.
-
Butter-Poached Veggie Pizza
#678
Served with seasonal sides and house-made sauce.
-
Fried Tuna Skewers
#679
Topped with house-made salsa and a squeeze of fresh lime.
-
Slow-Cooked Salmon Sandwich
#680
Slow-cooked to perfection with aromatic herbs and spices.
-
Tangy Mushroom Bowl
#681
Garnished with fresh herbs and a side of dipping sauce.
-
Tangy Lobster Curry
#682
Served with seasonal sides and house-made sauce.
-
Baked Chicken Platter
#683
A delightful blend of fresh ingredients and bold spices.
-
House Shrimp Salad
#684
Made fresh to order with the finest quality ingredients.
-
Garden Tuna Soup
#685
A delightful blend of fresh ingredients and bold spices.
-
Spicy Shrimp Roll
#686
Perfectly balanced with textures and complementary flavors.
-
Smoked Cheese Roll
#687
Light and refreshing with a hint of citrus and herbs.
-
Baked Turkey Pizza
#688
Finished with a drizzle of extra virgin olive oil.
-
Tangy Mushroom Fillet
#689
Topped with house-made salsa and a squeeze of fresh lime.
-
Glazed Chicken Pizza
#690
Inspired by traditional recipes with a modern twist.
-
Baked Scallops Tacos
#691
Served with seasonal sides and house-made sauce.
-
Signature Tempeh Tacos
#692
Light and refreshing with a hint of citrus and herbs.
-
House Crab Tacos
#693
A customer favorite, crafted from locally sourced produce.
-
Herb-Crusted Scallops Pasta
#694
Finished with a drizzle of extra virgin olive oil.
-
Garden Duck Risotto
#695
A light yet satisfying dish with vibrant flavors.
-
Baked Tuna Pasta
#696
Served with seasonal sides and house-made 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": 673,
"menuId": 71,
"name": "Spicy Beef Tacos",
"slug": "spicy-beef-tacos-673",
"description": "A crowd-pleasing selection that never disappoints.",
"price": 63.75,
"currency": "USD",
"foodCategoryId": 13,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-673/640/480",
"createdAt": "2025-07-20T06:19:12.337Z"
},
{
"id": 674,
"menuId": 71,
"name": "Grilled Duck Skewers",
"slug": "grilled-duck-skewers-674",
"description": "Inspired by traditional recipes with a modern twist.",
"price": 3.78,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-674/640/480",
"createdAt": "2024-08-04T08:46:54.169Z"
},
{
"id": 675,
"menuId": 71,
"name": "Savory Beef Pasta",
"slug": "savory-beef-pasta-675",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 45.17,
"currency": "USD",
"foodCategoryId": 18,
"spicyLevel": 2,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-675/640/480",
"createdAt": "2024-11-11T12:08:39.436Z"
}
],
"meta": {
"page": 29,
"limit": 24,
"total": 1450,
"totalPages": 61
},
"links": {
"self": "/api/v1/menu-items?page=29&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=30&limit=24",
"prev": "/api/v1/menu-items?page=28&limit=24"
}
}