example-data.com

menus / #14

restaurantId
Larson, Keeling and Klocko · Aidanboro · ★ 4.4
name
Breakfast Menu
description
Signature dishes that define our culinary identity.
isActive
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/menus/14"
)
menu = res.json()
{
  "id": 14,
  "restaurantId": 9,
  "name": "Breakfast Menu",
  "description": "Signature dishes that define our culinary identity.",
  "isActive": true,
  "createdAt": "2024-12-19T16:22:46.046Z",
  "updatedAt": "2025-07-27T04:49:34.647Z"
}
Draftbit