menu-items / #38
- menuId
- menus/5
- name
- Baked Veggie Wrap
- slug
- baked-veggie-wrap-38
- description
- A crowd-pleasing selection that never disappoints.
- price
- 30.15
- currency
- USD
- foodCategoryId
- 30
- spicyLevel
- 0
- isVegetarian
- false
- isVegan
- false
- isGlutenFree
- false
- imageUrl
- https://picsum.photos/seed/menu-item-38/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/38"
);
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/38"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/38"
)
menu_item = res.json() {
"id": 38,
"menuId": 5,
"name": "Baked Veggie Wrap",
"slug": "baked-veggie-wrap-38",
"description": "A crowd-pleasing selection that never disappoints.",
"price": 30.15,
"currency": "USD",
"foodCategoryId": 30,
"spicyLevel": 0,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-38/640/480",
"createdAt": "2025-03-30T22:20:14.921Z"
}