menus / #130
- restaurantId
- Roob - Fisher · Kuhlmanshire · ★ 3.2
- name
- Bar Menu
- description
- Inspired by global cuisines and local traditions.
- isActive
- true
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/menus/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/menus/130"
);
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/130"
);
const menu = (await res.json()) as Menu;import requests
res = requests.get(
"https://example-data.com/api/v1/menus/130"
)
menu = res.json() {
"id": 130,
"restaurantId": 83,
"name": "Bar Menu",
"description": "Inspired by global cuisines and local traditions.",
"isActive": true,
"createdAt": "2024-06-24T07:34:09.607Z",
"updatedAt": "2024-07-17T04:25:10.802Z"
}