menu-items / #206
- menuId
- menus/22
- name
- Baked Cod Skewers
- slug
- baked-cod-skewers-206
- description
- A hearty choice for those who love bold, satisfying meals.
- price
- 40.93
- currency
- USD
- foodCategoryId
- —
- spicyLevel
- 1
- isVegetarian
- true
- isVegan
- false
- isGlutenFree
- false
- imageUrl
- https://picsum.photos/seed/menu-item-206/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/206" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/206"
);
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/206"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/206"
)
menu_item = res.json() {
"id": 206,
"menuId": 22,
"name": "Baked Cod Skewers",
"slug": "baked-cod-skewers-206",
"description": "A hearty choice for those who love bold, satisfying meals.",
"price": 40.93,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 1,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-206/640/480",
"createdAt": "2025-10-18T05:44:52.041Z"
}