menu-items / #132
- menuId
- menus/14
- name
- Tangy Scallops Pizza
- slug
- tangy-scallops-pizza-132
- description
- A hearty choice for those who love bold, satisfying meals.
- price
- 6.69
- currency
- USD
- foodCategoryId
- —
- spicyLevel
- 2
- isVegetarian
- false
- isVegan
- false
- isGlutenFree
- true
- imageUrl
- https://picsum.photos/seed/menu-item-132/640/480
- createdAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/menu-items/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menu-items/132"
);
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/132"
);
const menuItem = (await res.json()) as MenuItem;import requests
res = requests.get(
"https://example-data.com/api/v1/menu-items/132"
)
menu_item = res.json() {
"id": 132,
"menuId": 14,
"name": "Tangy Scallops Pizza",
"slug": "tangy-scallops-pizza-132",
"description": "A hearty choice for those who love bold, satisfying meals.",
"price": 6.69,
"currency": "USD",
"foodCategoryId": null,
"spicyLevel": 2,
"isVegetarian": false,
"isVegan": false,
"isGlutenFree": true,
"imageUrl": "https://picsum.photos/seed/menu-item-132/640/480",
"createdAt": "2026-03-24T01:57:36.766Z"
}