menu-items / #89
- menuId
- menus/11
- name
- Smoked Crab Sandwich
- slug
- smoked-crab-sandwich-89
- description
- Light and refreshing with a hint of citrus and herbs.
- price
- 9.13
- currency
- USD
- foodCategoryId
- 16
- spicyLevel
- 1
- isVegetarian
- true
- isVegan
- false
- isGlutenFree
- false
- imageUrl
- https://picsum.photos/seed/menu-item-89/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/89" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/89"
);
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/89"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/89"
)
menu_item = res.json() {
"id": 89,
"menuId": 11,
"name": "Smoked Crab Sandwich",
"slug": "smoked-crab-sandwich-89",
"description": "Light and refreshing with a hint of citrus and herbs.",
"price": 9.13,
"currency": "USD",
"foodCategoryId": 16,
"spicyLevel": 1,
"isVegetarian": true,
"isVegan": false,
"isGlutenFree": false,
"imageUrl": "https://picsum.photos/seed/menu-item-89/640/480",
"createdAt": "2025-03-24T03:09:10.914Z"
}