example-data.com
Menu
Browse docs and collections

Overview

menu-items / #357

Butter-Poached Cheese Roll

menuId
menus/35
name
Butter-Poached Cheese Roll
slug
butter-poached-cheese-roll-357
description
Light and refreshing with a hint of citrus and herbs.
price
36.42
currency
USD
foodCategoryId
Sides
spicyLevel
0
isVegetarian
false
isVegan
false
isGlutenFree
false
imageUrl
https://picsum.photos/seed/menu-item-357/640/480
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 357,
  "menuId": 35,
  "name": "Butter-Poached Cheese Roll",
  "slug": "butter-poached-cheese-roll-357",
  "description": "Light and refreshing with a hint of citrus and herbs.",
  "price": 36.42,
  "currency": "USD",
  "foodCategoryId": 5,
  "spicyLevel": 0,
  "isVegetarian": false,
  "isVegan": false,
  "isGlutenFree": false,
  "imageUrl": "https://picsum.photos/seed/menu-item-357/640/480",
  "createdAt": "2025-07-28T20:00:29.151Z"
}