example-data.com

menus / #30

restaurantId
Hickle, Glover and Christiansen · Zulauffurt · ★ 3.7
name
Chef's Selection
description
Fresh, locally sourced ingredients prepared with care.
isActive
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/menus/30"
)
menu = res.json()
{
  "id": 30,
  "restaurantId": 20,
  "name": "Chef's Selection",
  "description": "Fresh, locally sourced ingredients prepared with care.",
  "isActive": true,
  "createdAt": "2024-05-28T23:00:40.960Z",
  "updatedAt": "2024-06-28T04:13:15.419Z"
}
Draftbit