Breakfast Menu
- restaurantId
- Pouros, O'Reilly and Block · Lake Chandler · ★ 3.5
- name
- Breakfast Menu
- description
- Classic favorites and chef-inspired creations.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #75
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/75" ); 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/75"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/75"
)
menu = res.json() Response
{
"id": 75,
"restaurantId": 47,
"name": "Breakfast Menu",
"description": "Classic favorites and chef-inspired creations.",
"isActive": true,
"createdAt": "2026-03-19T10:23:09.649Z",
"updatedAt": "2026-05-16T16:20:58.444Z"
}