Catering Menu
- restaurantId
- Kshlerin - Champlin · Marquardtfort · ★ 4.4
- name
- Catering Menu
- description
- Signature dishes that define our culinary identity.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #16
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/16" ); 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/16"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/16"
)
menu = res.json() Response
{
"id": 16,
"restaurantId": 11,
"name": "Catering Menu",
"description": "Signature dishes that define our culinary identity.",
"isActive": true,
"createdAt": "2024-11-30T14:48:30.066Z",
"updatedAt": "2025-11-04T09:16:37.595Z"
}