example-data.com

menus / #47

restaurantId
Schoen, Cole and Bauch · Thompsonberg · ★ 3.1
name
Weekend Specials
description
A thoughtfully designed menu for every palate.
isActive
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/menus/47"
)
menu = res.json()
{
  "id": 47,
  "restaurantId": 31,
  "name": "Weekend Specials",
  "description": "A thoughtfully designed menu for every palate.",
  "isActive": true,
  "createdAt": "2025-11-22T00:01:58.606Z",
  "updatedAt": "2026-05-05T17:27:28.054Z"
}
Draftbit