Breakfast Menu
- restaurantId
- Grimes, Durgan and Grady · Fort Estelfield · ★ 4.0
- name
- Breakfast Menu
- description
- Classic favorites and chef-inspired creations.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #120
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/120" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/120" ); 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/120"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/120"
)
menu = res.json() Response
{
"id": 120,
"restaurantId": 76,
"name": "Breakfast Menu",
"description": "Classic favorites and chef-inspired creations.",
"isActive": true,
"createdAt": "2024-10-30T07:57:19.496Z",
"updatedAt": "2025-12-28T17:08:59.459Z"
}