example-data.com

menu-items

menu-items

Page 7 of 10.

menuId
menus/15
name
Garden Crab Risotto
slug
garden-crab-risotto-145
description
Light and refreshing with a hint of citrus and herbs.
price
71.89
currency
USD
foodCategoryId
19
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-145/640/480
createdAt
menuId
menus/15
name
Pan-Seared Cod Soup
slug
pan-seared-cod-soup-146
description
A light yet satisfying dish with vibrant flavors.
price
43.72
currency
USD
foodCategoryId
25
spicyLevel
2
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-146/640/480
createdAt
menuId
menus/15
name
House Mushroom Risotto
slug
house-mushroom-risotto-147
description
Rich flavors layered with care by our kitchen team.
price
55.71
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
true
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-147/640/480
createdAt
menuId
menus/15
name
Tangy Crab Pizza
slug
tangy-crab-pizza-148
description
Topped with house-made salsa and a squeeze of fresh lime.
price
44.26
currency
USD
foodCategoryId
5
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-148/640/480
createdAt
menuId
menus/16
name
Spicy Tuna Flatbread
slug
spicy-tuna-flatbread-149
description
Perfectly balanced with textures and complementary flavors.
price
38.74
currency
USD
foodCategoryId
4
spicyLevel
1
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-149/640/480
createdAt
menuId
menus/16
name
Spicy Beef Fillet
slug
spicy-beef-fillet-150
description
A hearty choice for those who love bold, satisfying meals.
price
30.91
currency
USD
foodCategoryId
11
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-150/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": 145,
      "menuId": 15,
      "name": "Garden Crab Risotto",
      "slug": "garden-crab-risotto-145",
      "description": "Light and refreshing with a hint of citrus and herbs.",
      "price": 71.89,
      "currency": "USD",
      "foodCategoryId": 19,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-145/640/480",
      "createdAt": "2025-01-11T07:58:19.399Z"
    },
    {
      "id": 146,
      "menuId": 15,
      "name": "Pan-Seared Cod Soup",
      "slug": "pan-seared-cod-soup-146",
      "description": "A light yet satisfying dish with vibrant flavors.",
      "price": 43.72,
      "currency": "USD",
      "foodCategoryId": 25,
      "spicyLevel": 2,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-146/640/480",
      "createdAt": "2024-11-08T02:39:47.395Z"
    },
    {
      "id": 147,
      "menuId": 15,
      "name": "House Mushroom Risotto",
      "slug": "house-mushroom-risotto-147",
      "description": "Rich flavors layered with care by our kitchen team.",
      "price": 55.71,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-147/640/480",
      "createdAt": "2024-09-22T18:52:10.393Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=7",
    "next": "/api/v1/menu-items?page=8",
    "prev": "/api/v1/menu-items?page=6"
  }
}
Draftbit