example-data.com

menu-items / #192

menuId
menus/21
name
Fried Duck Steak
slug
fried-duck-steak-192
description
A customer favorite, crafted from locally sourced produce.
price
43.78
currency
USD
foodCategoryId
11
spicyLevel
1
isVegetarian
true
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-192/640/480
createdAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/menu-items/192" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menu-items/192"
);
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/192"
);
const menuItem = (await res.json()) as MenuItem;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menu-items/192"
)
menu_item = res.json()
{
  "id": 192,
  "menuId": 21,
  "name": "Fried Duck Steak",
  "slug": "fried-duck-steak-192",
  "description": "A customer favorite, crafted from locally sourced produce.",
  "price": 43.78,
  "currency": "USD",
  "foodCategoryId": 11,
  "spicyLevel": 1,
  "isVegetarian": true,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-192/640/480",
  "createdAt": "2025-09-19T13:08:35.508Z"
}
Draftbit