menu-items / #205
- menuId
- menus/22
- name
- Signature Mushroom Platter
- slug
- signature-mushroom-platter-205
- description
- Perfectly balanced with textures and complementary flavors.
- price
- 47.7
- currency
- USD
- foodCategoryId
- 24
- spicyLevel
- 0
- isVegetarian
- true
- isVegan
- false
- isGlutenFree
- false
- imageUrl
- https://picsum.photos/seed/menu-item-205/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/205" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/205"
);
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/205"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/205"
)
menu_item = res.json() {
"id": 205,
"menuId": 22,
"name": "Signature Mushroom Platter",
"slug": "signature-mushroom-platter-205",
"description": "Perfectly balanced with textures and complementary flavors.",
"price": 47.7,
"currency": "USD",
"foodCategoryId": 24,
"spicyLevel": 0,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-205/640/480",
"createdAt": "2026-03-28T13:29:18.511Z"
}