example-data.com

menu-items

menu-items

Page 8 of 10.

menuId
menus/17
name
Wood-Fired Mushroom Bowl
slug
wood-fired-mushroom-bowl-169
description
A delightful blend of fresh ingredients and bold spices.
price
52.33
currency
USD
foodCategoryId
13
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-169/640/480
createdAt
menuId
menus/17
name
Pan-Seared Turkey Curry
slug
pan-seared-turkey-curry-170
description
A delightful blend of fresh ingredients and bold spices.
price
78.13
currency
USD
foodCategoryId
11
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-170/640/480
createdAt
menuId
menus/17
name
Signature Turkey Tacos
slug
signature-turkey-tacos-171
description
Inspired by traditional recipes with a modern twist.
price
62.34
currency
USD
foodCategoryId
1
spicyLevel
3
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-171/640/480
createdAt
menuId
menus/18
name
Smoked Tofu Platter
slug
smoked-tofu-platter-172
description
A customer favorite, crafted from locally sourced produce.
price
44.09
currency
USD
foodCategoryId
19
spicyLevel
1
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-172/640/480
createdAt
menuId
menus/18
name
Herb-Crusted Veggie Soup
slug
herb-crusted-veggie-soup-173
description
A delightful blend of fresh ingredients and bold spices.
price
4.33
currency
USD
foodCategoryId
25
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-173/640/480
createdAt
menuId
menus/18
name
Charcoal Scallops Roll
slug
charcoal-scallops-roll-174
description
A hearty choice for those who love bold, satisfying meals.
price
31.23
currency
USD
foodCategoryId
2
spicyLevel
2
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-174/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": 169,
      "menuId": 17,
      "name": "Wood-Fired Mushroom Bowl",
      "slug": "wood-fired-mushroom-bowl-169",
      "description": "A delightful blend of fresh ingredients and bold spices.",
      "price": 52.33,
      "currency": "USD",
      "foodCategoryId": 13,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-169/640/480",
      "createdAt": "2024-07-31T00:32:43.279Z"
    },
    {
      "id": 170,
      "menuId": 17,
      "name": "Pan-Seared Turkey Curry",
      "slug": "pan-seared-turkey-curry-170",
      "description": "A delightful blend of fresh ingredients and bold spices.",
      "price": 78.13,
      "currency": "USD",
      "foodCategoryId": 11,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-170/640/480",
      "createdAt": "2025-11-04T09:52:18.141Z"
    },
    {
      "id": 171,
      "menuId": 17,
      "name": "Signature Turkey Tacos",
      "slug": "signature-turkey-tacos-171",
      "description": "Inspired by traditional recipes with a modern twist.",
      "price": 62.34,
      "currency": "USD",
      "foodCategoryId": 1,
      "spicyLevel": 3,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": true,
      "imageUrl": "https://picsum.photos/seed/menu-item-171/640/480",
      "createdAt": "2024-06-09T21:48:42.878Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=8",
    "next": "/api/v1/menu-items?page=9",
    "prev": "/api/v1/menu-items?page=7"
  }
}
Draftbit