example-data.com
Menu
Browse docs and collections

Overview

menus / #150

Tasting Menu

restaurantId
Effertz, Pagac and Price · Laredo · ★ 3.4
name
Tasting Menu
description
Premium selections paired with exceptional flavors.
isActive
true
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/menus/150" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/menus/150"
);
const menu = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/menus.d.ts https://example-data.com/types/menus.d.ts
import type { Menu } from "./types/menus";

const res = await fetch(
  "https://example-data.com/api/v1/menus/150"
);
const menu = (await res.json()) as Menu;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/menus/150"
)
menu = res.json()

Response

{
  "id": 150,
  "restaurantId": 96,
  "name": "Tasting Menu",
  "description": "Premium selections paired with exceptional flavors.",
  "isActive": true,
  "createdAt": "2025-04-04T08:36:11.403Z",
  "updatedAt": "2026-03-26T20:17:54.281Z"
}