Bar Menu
- restaurantId
- Hirthe, Klein and Baumbach · North Giles · ★ 4.2
- name
- Bar Menu
- description
- Premium selections paired with exceptional flavors.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #37
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/37" ); 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/37"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/37"
)
menu = res.json() Response
{
"id": 37,
"restaurantId": 24,
"name": "Bar Menu",
"description": "Premium selections paired with exceptional flavors.",
"isActive": true,
"createdAt": "2026-04-13T22:19:09.285Z",
"updatedAt": "2026-05-14T07:36:23.811Z"
}