menus / #129
- restaurantId
- Rogahn - Kreiger · South Cathrynside · ★ 4.6
- name
- Catering Menu
- description
- Fresh, locally sourced ingredients prepared with care.
- isActive
- false
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/menus/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menus/129"
);
const menu = await res.json();import type { Menu } from "https://example-data.com/types/menus.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/menus/129"
);
const menu = (await res.json()) as Menu;import requests
res = requests.get(
"https://example-data.com/api/v1/menus/129"
)
menu = res.json() {
"id": 129,
"restaurantId": 82,
"name": "Catering Menu",
"description": "Fresh, locally sourced ingredients prepared with care.",
"isActive": false,
"createdAt": "2025-05-26T06:52:43.631Z",
"updatedAt": "2025-12-12T12:53:31.068Z"
}