example-data.com

menu-items

menu-items

Page 2 of 10.

menuId
menus/3
name
Seasonal Veggie Roll
slug
seasonal-veggie-roll-25
description
Slow-cooked to perfection with aromatic herbs and spices.
price
58.88
currency
USD
foodCategoryId
27
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-25/640/480
createdAt
menuId
menus/3
name
Herb-Crusted Chicken Tacos
slug
herb-crusted-chicken-tacos-26
description
A crowd-pleasing selection that never disappoints.
price
40.55
currency
USD
foodCategoryId
21
spicyLevel
0
isVegetarian
true
isVegan
true
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-26/640/480
createdAt
menuId
menus/3
name
Seasonal Salmon Bowl
slug
seasonal-salmon-bowl-27
description
Rich flavors layered with care by our kitchen team.
price
52.95
currency
USD
foodCategoryId
5
spicyLevel
2
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-27/640/480
createdAt
menuId
menus/3
name
Glazed Turkey Bowl
slug
glazed-turkey-bowl-28
description
Finished with a drizzle of extra virgin olive oil.
price
72.82
currency
USD
foodCategoryId
spicyLevel
1
isVegetarian
true
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-28/640/480
createdAt
menuId
menus/3
name
Chef's Cod Soup
slug
chef-s-cod-soup-29
description
Finished with a drizzle of extra virgin olive oil.
price
34.11
currency
USD
foodCategoryId
24
spicyLevel
1
isVegetarian
true
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-29/640/480
createdAt
menuId
menus/4
name
Charcoal Duck Pizza
slug
charcoal-duck-pizza-30
description
Topped with house-made salsa and a squeeze of fresh lime.
price
76.01
currency
USD
foodCategoryId
5
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-30/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": 25,
      "menuId": 3,
      "name": "Seasonal Veggie Roll",
      "slug": "seasonal-veggie-roll-25",
      "description": "Slow-cooked to perfection with aromatic herbs and spices.",
      "price": 58.88,
      "currency": "USD",
      "foodCategoryId": 27,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-25/640/480",
      "createdAt": "2026-03-20T21:02:35.305Z"
    },
    {
      "id": 26,
      "menuId": 3,
      "name": "Herb-Crusted Chicken Tacos",
      "slug": "herb-crusted-chicken-tacos-26",
      "description": "A crowd-pleasing selection that never disappoints.",
      "price": 40.55,
      "currency": "USD",
      "foodCategoryId": 21,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": true,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-26/640/480",
      "createdAt": "2025-01-19T01:57:26.488Z"
    },
    {
      "id": 27,
      "menuId": 3,
      "name": "Seasonal Salmon Bowl",
      "slug": "seasonal-salmon-bowl-27",
      "description": "Rich flavors layered with care by our kitchen team.",
      "price": 52.95,
      "currency": "USD",
      "foodCategoryId": 5,
      "spicyLevel": 2,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-27/640/480",
      "createdAt": "2025-11-17T05:40:22.079Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=2",
    "next": "/api/v1/menu-items?page=3",
    "prev": "/api/v1/menu-items?page=1"
  }
}
Draftbit