example-data.com

menu-items

menu-items

Page 6 of 10.

menuId
menus/14
name
Spicy Cheese Steak
slug
spicy-cheese-steak-121
description
Garnished with fresh herbs and a side of dipping sauce.
price
56.47
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-121/640/480
createdAt
menuId
menus/14
name
Tangy Shrimp Roll
slug
tangy-shrimp-roll-122
description
Inspired by traditional recipes with a modern twist.
price
44.94
currency
USD
foodCategoryId
7
spicyLevel
0
isVegetarian
true
isVegan
true
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-122/640/480
createdAt
menuId
menus/14
name
Spicy Tempeh Tacos
slug
spicy-tempeh-tacos-123
description
Finished with a drizzle of extra virgin olive oil.
price
67.63
currency
USD
foodCategoryId
30
spicyLevel
1
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-123/640/480
createdAt
menuId
menus/14
name
Garden Cod Steak
slug
garden-cod-steak-124
description
A hearty choice for those who love bold, satisfying meals.
price
76.33
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-124/640/480
createdAt
menuId
menus/14
name
Spicy Pork Platter
slug
spicy-pork-platter-125
description
Light and refreshing with a hint of citrus and herbs.
price
10.21
currency
USD
foodCategoryId
14
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-125/640/480
createdAt
menuId
menus/14
name
Braised Duck Wrap
slug
braised-duck-wrap-126
description
Made fresh to order with the finest quality ingredients.
price
5.82
currency
USD
foodCategoryId
10
spicyLevel
1
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-126/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": 121,
      "menuId": 14,
      "name": "Spicy Cheese Steak",
      "slug": "spicy-cheese-steak-121",
      "description": "Garnished with fresh herbs and a side of dipping sauce.",
      "price": 56.47,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-121/640/480",
      "createdAt": "2025-01-12T12:47:52.179Z"
    },
    {
      "id": 122,
      "menuId": 14,
      "name": "Tangy Shrimp Roll",
      "slug": "tangy-shrimp-roll-122",
      "description": "Inspired by traditional recipes with a modern twist.",
      "price": 44.94,
      "currency": "USD",
      "foodCategoryId": 7,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": true,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-122/640/480",
      "createdAt": "2024-06-21T08:20:24.597Z"
    },
    {
      "id": 123,
      "menuId": 14,
      "name": "Spicy Tempeh Tacos",
      "slug": "spicy-tempeh-tacos-123",
      "description": "Finished with a drizzle of extra virgin olive oil.",
      "price": 67.63,
      "currency": "USD",
      "foodCategoryId": 30,
      "spicyLevel": 1,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-123/640/480",
      "createdAt": "2025-06-08T14:22:31.498Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=6",
    "next": "/api/v1/menu-items?page=7",
    "prev": "/api/v1/menu-items?page=5"
  }
}
Draftbit