Catering Menu
- restaurantId
- Gulgowski, Terry and Funk · North Stephaniefort · ★ 4.9
- name
- Catering Menu
- description
- A thoughtfully designed menu for every palate.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #68
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/68" ); 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/68"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/68"
)
menu = res.json() Response
{
"id": 68,
"restaurantId": 44,
"name": "Catering Menu",
"description": "A thoughtfully designed menu for every palate.",
"isActive": true,
"createdAt": "2025-09-26T12:21:45.723Z",
"updatedAt": "2025-11-14T04:39:07.399Z"
}