menus / #108
- restaurantId
- Hayes - McDermott · Lake Tanya · ★ 2.5
- name
- Lunch Menu
- description
- A curated selection of our finest dishes for the occasion.
- isActive
- true
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/menus/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menus/108"
);
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/108"
);
const menu = (await res.json()) as Menu;import requests
res = requests.get(
"https://example-data.com/api/v1/menus/108"
)
menu = res.json() {
"id": 108,
"restaurantId": 68,
"name": "Lunch Menu",
"description": "A curated selection of our finest dishes for the occasion.",
"isActive": true,
"createdAt": "2024-06-05T19:47:59.190Z",
"updatedAt": "2025-06-06T17:39:14.790Z"
}