Brunch Menu
- restaurantId
- Hegmann - Daugherty · Dulcestad · ★ 4.6
- name
- Brunch Menu
- description
- Fresh, locally sourced ingredients prepared with care.
- isActive
- false
- createdAt
- updatedAt
Overview
menus / #72
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/72" ); const menu = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/menus.d.ts https://example-data.com/types/menus.d.ts
import type { Menu } from "./types/menus";
const res = await fetch(
"https://example-data.com/api/v1/menus/72"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/72"
)
menu = res.json() Response
{
"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"
}