Chef's Selection
- restaurantId
- Walker - Botsford · Zulaufburgh · ★ 3.7
- name
- Chef's Selection
- description
- Premium selections paired with exceptional flavors.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #49
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/49" ); 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/49"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/49"
)
menu = res.json() Response
{
"id": 49,
"restaurantId": 32,
"name": "Chef's Selection",
"description": "Premium selections paired with exceptional flavors.",
"isActive": true,
"createdAt": "2025-05-08T18:20:24.568Z",
"updatedAt": "2026-02-13T12:46:20.284Z"
}