Chef's Selection
- restaurantId
- Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
- name
- Chef's Selection
- description
- Signature dishes that define our culinary identity.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/59" ); 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/59"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/59"
)
menu = res.json() Response
{
"id": 59,
"restaurantId": 38,
"name": "Chef's Selection",
"description": "Signature dishes that define our culinary identity.",
"isActive": true,
"createdAt": "2026-01-07T02:38:10.251Z",
"updatedAt": "2026-03-07T08:05:18.878Z"
}