Lunch Menu
- restaurantId
- Simonis, Reynolds and Harber · Dahliastead · ★ 3.5
- name
- Lunch Menu
- description
- Classic favorites and chef-inspired creations.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #26
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/26" ); 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/26"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/26"
)
menu = res.json() Response
{
"id": 26,
"restaurantId": 17,
"name": "Lunch Menu",
"description": "Classic favorites and chef-inspired creations.",
"isActive": true,
"createdAt": "2025-01-02T16:55:11.820Z",
"updatedAt": "2025-04-23T00:45:26.120Z"
}