À La Carte Menu
- restaurantId
- Welch LLC · North Brando · ★ 4.0
- name
- À La Carte Menu
- description
- Seasonal ingredients crafted into memorable plates.
- isActive
- true
- createdAt
- updatedAt
Overview
menus / #147
Request
curl example
curl -sS \ "https://example-data.com/api/v1/menus/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/menus/147" ); 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/147"
);
const menu = (await res.json()) as Menu; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/menus/147"
)
menu = res.json() Response
{
"id": 147,
"restaurantId": 95,
"name": "À La Carte Menu",
"description": "Seasonal ingredients crafted into memorable plates.",
"isActive": true,
"createdAt": "2026-04-13T03:31:12.097Z",
"updatedAt": "2026-04-26T23:37:51.737Z"
}