example-data.com

menu-items / #188

menuId
menus/20
name
Charcoal Chicken Skewers
slug
charcoal-chicken-skewers-188
description
Rich flavors layered with care by our kitchen team.
price
17.39
currency
USD
foodCategoryId
1
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-188/640/480
createdAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/menu-items/188" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menu-items/188"
);
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/188"
);
const menuItem = (await res.json()) as MenuItem;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menu-items/188"
)
menu_item = res.json()
{
  "id": 188,
  "menuId": 20,
  "name": "Charcoal Chicken Skewers",
  "slug": "charcoal-chicken-skewers-188",
  "description": "Rich flavors layered with care by our kitchen team.",
  "price": 17.39,
  "currency": "USD",
  "foodCategoryId": 1,
  "spicyLevel": 0,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-188/640/480",
  "createdAt": "2024-09-02T00:47:17.190Z"
}
Draftbit