Weekend Specials
- restaurantId
- Halvorson - Olson · Lake Angeloton · ★ 3.7
- name
- Weekend Specials
- description
- Classic favorites and chef-inspired creations.
- isActive
- false
- createdAt
- updatedAt
Overview
menus / #11
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/11" ); 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/11"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/11"
)
menu = res.json() Response
{
"id": 11,
"restaurantId": 8,
"name": "Weekend Specials",
"description": "Classic favorites and chef-inspired creations.",
"isActive": false,
"createdAt": "2026-01-21T19:47:20.514Z",
"updatedAt": "2026-04-11T21:31:36.016Z"
}