menu-items / #112
- menuId
- menus/13
- name
- Baked Salmon Soup
- slug
- baked-salmon-soup-112
- description
- A light yet satisfying dish with vibrant flavors.
- price
- 33.51
- currency
- USD
- foodCategoryId
- —
- spicyLevel
- 2
- isVegetarian
- true
- isVegan
- true
- isGlutenFree
- false
- imageUrl
- https://picsum.photos/seed/menu-item-112/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/112"
);
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/112"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/112"
)
menu_item = res.json() {
"id": 112,
"menuId": 13,
"name": "Baked Salmon Soup",
"slug": "baked-salmon-soup-112",
"description": "A light yet satisfying dish with vibrant flavors.",
"price": 33.51,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 2,
"isVegetarian": true,
"isVegan": true,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-112/640/480",
"createdAt": "2025-10-02T16:42:46.845Z"
}