Weekend Specials
- restaurantId
- Schoen, Cole and Bauch · Thompsonberg · ★ 3.1
- name
- Weekend Specials
- description
- A thoughtfully designed menu for every palate.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #47
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/47" ); 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/47"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/47"
)
menu = res.json() Response
{
"id": 47,
"restaurantId": 31,
"name": "Weekend Specials",
"description": "A thoughtfully designed menu for every palate.",
"isActive": true,
"createdAt": "2025-11-22T00:01:58.606Z",
"updatedAt": "2026-05-05T17:27:28.054Z"
}