example-data.com

menu-items

menu-items

Page 5 of 10.

menuId
menus/11
name
Tangy Tofu Soup
slug
tangy-tofu-soup-97
description
Slow-cooked to perfection with aromatic herbs and spices.
price
59.79
currency
USD
foodCategoryId
29
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-97/640/480
createdAt
menuId
menus/11
name
House Cod Skewers
slug
house-cod-skewers-98
description
Served with seasonal sides and house-made sauce.
price
61.3
currency
USD
foodCategoryId
7
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-98/640/480
createdAt
menuId
menus/11
name
Charcoal Tempeh Wrap
slug
charcoal-tempeh-wrap-99
description
A customer favorite, crafted from locally sourced produce.
price
63.16
currency
USD
foodCategoryId
9
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-99/640/480
createdAt
menuId
menus/12
name
Chef's Pork Risotto
slug
chef-s-pork-risotto-100
description
Served with seasonal sides and house-made sauce.
price
55.87
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-100/640/480
createdAt
menuId
menus/12
name
Herb-Crusted Cod Flatbread
slug
herb-crusted-cod-flatbread-101
description
Garnished with fresh herbs and a side of dipping sauce.
price
7.91
currency
USD
foodCategoryId
6
spicyLevel
0
isVegetarian
true
isVegan
true
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-101/640/480
createdAt
menuId
menus/12
name
Signature Shrimp Wrap
slug
signature-shrimp-wrap-102
description
A delightful blend of fresh ingredients and bold spices.
price
49.52
currency
USD
foodCategoryId
28
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-102/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": 97,
      "menuId": 11,
      "name": "Tangy Tofu Soup",
      "slug": "tangy-tofu-soup-97",
      "description": "Slow-cooked to perfection with aromatic herbs and spices.",
      "price": 59.79,
      "currency": "USD",
      "foodCategoryId": 29,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": true,
      "imageUrl": "https://picsum.photos/seed/menu-item-97/640/480",
      "createdAt": "2026-04-15T12:20:15.369Z"
    },
    {
      "id": 98,
      "menuId": 11,
      "name": "House Cod Skewers",
      "slug": "house-cod-skewers-98",
      "description": "Served with seasonal sides and house-made sauce.",
      "price": 61.3,
      "currency": "USD",
      "foodCategoryId": 7,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": true,
      "imageUrl": "https://picsum.photos/seed/menu-item-98/640/480",
      "createdAt": "2024-05-25T00:23:09.835Z"
    },
    {
      "id": 99,
      "menuId": 11,
      "name": "Charcoal Tempeh Wrap",
      "slug": "charcoal-tempeh-wrap-99",
      "description": "A customer favorite, crafted from locally sourced produce.",
      "price": 63.16,
      "currency": "USD",
      "foodCategoryId": 9,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-99/640/480",
      "createdAt": "2025-07-19T02:33:25.861Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=5",
    "next": "/api/v1/menu-items?page=6",
    "prev": "/api/v1/menu-items?page=4"
  }
}
Draftbit