example-data.com

menus / #19

restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
name
Family Menu
description
Premium selections paired with exceptional flavors.
isActive
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/menus/19"
)
menu = res.json()
{
  "id": 19,
  "restaurantId": 13,
  "name": "Family Menu",
  "description": "Premium selections paired with exceptional flavors.",
  "isActive": true,
  "createdAt": "2026-01-30T07:07:33.823Z",
  "updatedAt": "2026-04-13T00:48:17.783Z"
}
Draftbit