example-data.com

menu-items / #182

menuId
menus/19
name
Butter-Poached Chicken Tacos
slug
butter-poached-chicken-tacos-182
description
Garnished with fresh herbs and a side of dipping sauce.
price
26.93
currency
USD
foodCategoryId
29
spicyLevel
1
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-182/640/480
createdAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/menu-items/182" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menu-items/182"
);
const menuItem = await res.json();
import type { MenuItem } from "https://example-data.com/types/menu-items.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/menu-items/182"
);
const menuItem = (await res.json()) as MenuItem;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menu-items/182"
)
menu_item = res.json()
{
  "id": 182,
  "menuId": 19,
  "name": "Butter-Poached Chicken Tacos",
  "slug": "butter-poached-chicken-tacos-182",
  "description": "Garnished with fresh herbs and a side of dipping sauce.",
  "price": 26.93,
  "currency": "USD",
  "foodCategoryId": 29,
  "spicyLevel": 1,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": true,
  "imageUrl": "https://picsum.photos/seed/menu-item-182/640/480",
  "createdAt": "2025-08-20T15:49:47.704Z"
}
Draftbit