example-data.com

menu-items / #237

menuId
menus/25
name
Signature Pork Roll
slug
signature-pork-roll-237
description
A hearty choice for those who love bold, satisfying meals.
price
39.78
currency
USD
foodCategoryId
6
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-237/640/480
createdAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/menu-items/237"
)
menu_item = res.json()
{
  "id": 237,
  "menuId": 25,
  "name": "Signature Pork Roll",
  "slug": "signature-pork-roll-237",
  "description": "A hearty choice for those who love bold, satisfying meals.",
  "price": 39.78,
  "currency": "USD",
  "foodCategoryId": 6,
  "spicyLevel": 0,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-237/640/480",
  "createdAt": "2025-08-21T19:58:01.825Z"
}
Draftbit