example-data.com

menu-items / #85

menuId
menus/10
name
Glazed Chicken Platter
slug
glazed-chicken-platter-85
description
Made fresh to order with the finest quality ingredients.
price
53.75
currency
USD
foodCategoryId
spicyLevel
1
isVegetarian
false
isVegan
false
isGlutenFree
true
imageUrl
https://picsum.photos/seed/menu-item-85/640/480
createdAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/menu-items/85"
)
menu_item = res.json()
{
  "id": 85,
  "menuId": 10,
  "name": "Glazed Chicken Platter",
  "slug": "glazed-chicken-platter-85",
  "description": "Made fresh to order with the finest quality ingredients.",
  "price": 53.75,
  "currency": "USD",
  "foodCategoryId": null,
  "spicyLevel": 1,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": true,
  "imageUrl": "https://picsum.photos/seed/menu-item-85/640/480",
  "createdAt": "2025-04-16T23:56:56.563Z"
}
Draftbit