example-data.com
Menu
Browse docs and collections

Overview

menu-items / #1

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/menu-items/1"
);
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/1"
);
const menuItem = (await res.json()) as MenuItem;

Python example

import requests

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

Response

{
  "id": 1,
  "menuId": 1,
  "name": "House Turkey Platter",
  "slug": "house-turkey-platter-1",
  "description": "Rich flavors layered with care by our kitchen team.",
  "price": 56.79,
  "currency": "USD",
  "foodCategoryId": 13,
  "spicyLevel": 0,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-1/640/480",
  "createdAt": "2026-03-27T20:46:28.856Z"
}