menu-items / #104
- menuId
- menus/12
- name
- Wood-Fired Tofu Sandwich
- slug
- wood-fired-tofu-sandwich-104
- description
- A crowd-pleasing selection that never disappoints.
- price
- 65.96
- currency
- USD
- foodCategoryId
- 9
- spicyLevel
- 0
- isVegetarian
- false
- isVegan
- false
- isGlutenFree
- true
- imageUrl
- https://picsum.photos/seed/menu-item-104/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/104"
);
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/104"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/104"
)
menu_item = res.json() {
"id": 104,
"menuId": 12,
"name": "Wood-Fired Tofu Sandwich",
"slug": "wood-fired-tofu-sandwich-104",
"description": "A crowd-pleasing selection that never disappoints.",
"price": 65.96,
"currency": "USD",
"foodCategoryId": 9,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-104/640/480",
"createdAt": "2025-08-08T11:28:40.364Z"
}