Brunch Menu
- restaurantId
- Cruickshank - Jacobi · Vandervortfield · ★ 3.0
- name
- Brunch Menu
- description
- Seasonal ingredients crafted into memorable plates.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #15
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/15" ); 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/15"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/15"
)
menu = res.json() Response
{
"id": 15,
"restaurantId": 10,
"name": "Brunch Menu",
"description": "Seasonal ingredients crafted into memorable plates.",
"isActive": true,
"createdAt": "2025-08-19T04:51:39.722Z",
"updatedAt": "2026-01-17T20:46:36.794Z"
}