example-data.com

menus / #106

restaurantId
Huel, Stark and Zulauf · Zoiemouth · ★ 2.7
name
Weekend Specials
description
A curated selection of our finest dishes for the occasion.
isActive
false
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/menus/106" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menus/106"
);
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/106"
);
const menu = (await res.json()) as Menu;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menus/106"
)
menu = res.json()
{
  "id": 106,
  "restaurantId": 67,
  "name": "Weekend Specials",
  "description": "A curated selection of our finest dishes for the occasion.",
  "isActive": false,
  "createdAt": "2025-11-08T18:04:00.429Z",
  "updatedAt": "2026-02-11T21:31:06.336Z"
}
Draftbit