example-data.com

menus / #143

restaurantId
Klocko, Gusikowski and Lockman · Lake Vern · ★ 2.9
name
Prix Fixe Menu
description
Signature dishes that define our culinary identity.
isActive
false
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/menus/143" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menus/143"
);
const menu = await res.json();
import type { Menu } from "https://example-data.com/types/menus.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/menus/143"
);
const menu = (await res.json()) as Menu;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menus/143"
)
menu = res.json()
{
  "id": 143,
  "restaurantId": 92,
  "name": "Prix Fixe Menu",
  "description": "Signature dishes that define our culinary identity.",
  "isActive": false,
  "createdAt": "2024-09-29T20:42:29.318Z",
  "updatedAt": "2025-12-30T17:45:50.895Z"
}
Draftbit