example-data.com

menus / #72

restaurantId
Hegmann - Daugherty · Dulcestad · ★ 4.6
name
Brunch Menu
description
Fresh, locally sourced ingredients prepared with care.
isActive
false
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/menus/72" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menus/72"
);
const menu = await res.json();
import type { Menu } from "https://example-data.com/types/menus.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/menus/72"
);
const menu = (await res.json()) as Menu;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menus/72"
)
menu = res.json()
{
  "id": 72,
  "restaurantId": 46,
  "name": "Brunch Menu",
  "description": "Fresh, locally sourced ingredients prepared with care.",
  "isActive": false,
  "createdAt": "2025-06-11T01:02:36.370Z",
  "updatedAt": "2026-03-31T18:13:11.093Z"
}
Draftbit