example-data.com

menus / #83

restaurantId
Heathcote Inc · Schmidtfield · ★ 2.7
name
Breakfast 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/83" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menus/83"
);
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/83"
);
const menu = (await res.json()) as Menu;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menus/83"
)
menu = res.json()
{
  "id": 83,
  "restaurantId": 53,
  "name": "Breakfast Menu",
  "description": "Fresh, locally sourced ingredients prepared with care.",
  "isActive": false,
  "createdAt": "2026-05-17T22:22:20.463Z",
  "updatedAt": "2026-05-18T10:19:50.688Z"
}
Draftbit