example-data.com

menus / #1

restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
name
Bar Menu
description
Premium selections paired with exceptional flavors.
isActive
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/menus/1"
)
menu = res.json()
{
  "id": 1,
  "restaurantId": 1,
  "name": "Bar Menu",
  "description": "Premium selections paired with exceptional flavors.",
  "isActive": false,
  "createdAt": "2026-02-27T19:41:54.207Z",
  "updatedAt": "2026-03-29T19:01:27.613Z"
}
Draftbit