Catering Menu
- restaurantId
- Spinka, Runolfsdottir and Brown · Costa Mesa · ★ 3.1
- name
- Catering Menu
- description
- Fresh, locally sourced ingredients prepared with care.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #135
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/135" ); 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/135"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/135"
)
menu = res.json() Response
{
"id": 135,
"restaurantId": 87,
"name": "Catering Menu",
"description": "Fresh, locally sourced ingredients prepared with care.",
"isActive": true,
"createdAt": "2026-04-24T17:48:30.080Z",
"updatedAt": "2026-05-12T14:38:32.074Z"
}