example-data.com

menu-items / #17

menuId
menus/2
name
Glazed Scallops Salad
slug
glazed-scallops-salad-17
description
A light yet satisfying dish with vibrant flavors.
price
25.2
currency
USD
foodCategoryId
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-17/640/480
createdAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/menu-items/17"
)
menu_item = res.json()
{
  "id": 17,
  "menuId": 2,
  "name": "Glazed Scallops Salad",
  "slug": "glazed-scallops-salad-17",
  "description": "A light yet satisfying dish with vibrant flavors.",
  "price": 25.2,
  "currency": "USD",
  "foodCategoryId": null,
  "spicyLevel": 0,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-17/640/480",
  "createdAt": "2026-01-05T02:58:30.002Z"
}
Draftbit