example-data.com

menu-items

menu-items

Page 9 of 10.

menuId
menus/21
name
Savory Tofu Curry
slug
savory-tofu-curry-193
description
A light yet satisfying dish with vibrant flavors.
price
75.91
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-193/640/480
createdAt
menuId
menus/21
name
Classic Beef Tacos
slug
classic-beef-tacos-194
description
Served with seasonal sides and house-made sauce.
price
14.94
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
true
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-194/640/480
createdAt
menuId
menus/21
name
Butter-Poached Cod Salad
slug
butter-poached-cod-salad-195
description
Garnished with fresh herbs and a side of dipping sauce.
price
3.93
currency
USD
foodCategoryId
15
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-195/640/480
createdAt
menuId
menus/21
name
Fire-Roasted Mushroom Bowl
slug
fire-roasted-mushroom-bowl-196
description
Slow-cooked to perfection with aromatic herbs and spices.
price
60.72
currency
USD
foodCategoryId
8
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-196/640/480
createdAt
menuId
menus/21
name
Grilled Chicken Pizza
slug
grilled-chicken-pizza-197
description
Garnished with fresh herbs and a side of dipping sauce.
price
47.7
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-197/640/480
createdAt
menuId
menus/22
name
Herb-Crusted Turkey Flatbread
slug
herb-crusted-turkey-flatbread-198
description
Served with seasonal sides and house-made sauce.
price
63.46
currency
USD
foodCategoryId
17
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-198/640/480
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/menu-items?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/menu-items?limit=25"
);
const { data, meta } = await res.json();
import type { MenuItem, ListEnvelope } from "https://example-data.com/types/menu-items.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/menu-items?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<MenuItem>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menu-items",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 193,
      "menuId": 21,
      "name": "Savory Tofu Curry",
      "slug": "savory-tofu-curry-193",
      "description": "A light yet satisfying dish with vibrant flavors.",
      "price": 75.91,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-193/640/480",
      "createdAt": "2026-02-25T16:36:15.429Z"
    },
    {
      "id": 194,
      "menuId": 21,
      "name": "Classic Beef Tacos",
      "slug": "classic-beef-tacos-194",
      "description": "Served with seasonal sides and house-made sauce.",
      "price": 14.94,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-194/640/480",
      "createdAt": "2025-04-08T21:46:35.751Z"
    },
    {
      "id": 195,
      "menuId": 21,
      "name": "Butter-Poached Cod Salad",
      "slug": "butter-poached-cod-salad-195",
      "description": "Garnished with fresh herbs and a side of dipping sauce.",
      "price": 3.93,
      "currency": "USD",
      "foodCategoryId": 15,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-195/640/480",
      "createdAt": "2024-09-14T12:09:38.062Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=9",
    "next": "/api/v1/menu-items?page=10",
    "prev": "/api/v1/menu-items?page=8"
  }
}
Draftbit