Seasonal Menu
- restaurantId
- Mohr, Treutel and Watsica · East Felipa · ★ 4.6
- name
- Seasonal Menu
- description
- Signature dishes that define our culinary identity.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #41
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/41" ); 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/41"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/41"
)
menu = res.json() Response
{
"id": 41,
"restaurantId": 27,
"name": "Seasonal Menu",
"description": "Signature dishes that define our culinary identity.",
"isActive": true,
"createdAt": "2025-09-14T09:42:46.523Z",
"updatedAt": "2025-11-05T09:55:08.107Z"
}