example-data.com

menus / #70

restaurantId
Simonis - Kshlerin · Stanleybury · ★ 2.8
name
Happy Hour 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/70" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/menus/70"
);
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/70"
);
const menu = (await res.json()) as Menu;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menus/70"
)
menu = res.json()
{
  "id": 70,
  "restaurantId": 45,
  "name": "Happy Hour Menu",
  "description": "Signature dishes that define our culinary identity.",
  "isActive": true,
  "createdAt": "2025-04-10T13:07:40.658Z",
  "updatedAt": "2025-11-06T09:58:38.095Z"
}
Draftbit