example-data.com
Menu
Browse docs and collections

Overview

menu-items / #1402

Crispy Pork Risotto

menuId
menus/149
name
Crispy Pork Risotto
slug
crispy-pork-risotto-1402
description
Perfectly balanced with textures and complementary flavors.
price
55.46
currency
USD
foodCategoryId
Sides
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-1402/640/480
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/menu-items/1402" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/menu-items/1402"
);
const menuItem = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/menu-items.d.ts https://example-data.com/types/menu-items.d.ts
import type { MenuItem } from "./types/menu-items";

const res = await fetch(
  "https://example-data.com/api/v1/menu-items/1402"
);
const menuItem = (await res.json()) as MenuItem;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/menu-items/1402"
)
menu_item = res.json()

Response

{
  "id": 1402,
  "menuId": 149,
  "name": "Crispy Pork Risotto",
  "slug": "crispy-pork-risotto-1402",
  "description": "Perfectly balanced with textures and complementary flavors.",
  "price": 55.46,
  "currency": "USD",
  "foodCategoryId": 5,
  "spicyLevel": 0,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-1402/640/480",
  "createdAt": "2025-06-17T14:01:18.152Z"
}