example-data.com

menus

menus

Page 4 of 7.

restaurantId
Hegmann - Daugherty · Dulcestad · ★ 4.6
name
Happy Hour Menu
description
Signature dishes that define our culinary identity.
isActive
true
createdAt
updatedAt
restaurantId
Pouros, O'Reilly and Block · Lake Chandler · ★ 3.5
name
Kids Menu
description
A curated selection of our finest dishes for the occasion.
isActive
true
createdAt
updatedAt
restaurantId
Pouros, O'Reilly and Block · Lake Chandler · ★ 3.5
name
Breakfast Menu
description
Classic favorites and chef-inspired creations.
isActive
true
createdAt
updatedAt
restaurantId
Macejkovic - Lehner · Petertown · ★ 4.3
name
Breakfast Menu
description
A thoughtfully designed menu for every palate.
isActive
true
createdAt
updatedAt
restaurantId
Bartoletti LLC · Shannychester · ★ 3.3
name
Brunch Menu
description
Premium selections paired with exceptional flavors.
isActive
true
createdAt
updatedAt
restaurantId
Bartoletti LLC · Shannychester · ★ 3.3
name
Dinner Menu
description
Premium selections paired with exceptional flavors.
isActive
true
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/menus?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = await res.json();
import type { Menu, ListEnvelope } from "https://example-data.com/types/menus.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Menu>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/menus",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 73,
      "restaurantId": 46,
      "name": "Happy Hour Menu",
      "description": "Signature dishes that define our culinary identity.",
      "isActive": true,
      "createdAt": "2026-02-02T09:41:51.967Z",
      "updatedAt": "2026-02-15T11:14:47.345Z"
    },
    {
      "id": 74,
      "restaurantId": 47,
      "name": "Kids Menu",
      "description": "A curated selection of our finest dishes for the occasion.",
      "isActive": true,
      "createdAt": "2025-10-11T06:09:31.110Z",
      "updatedAt": "2026-04-02T11:33:33.959Z"
    },
    {
      "id": 75,
      "restaurantId": 47,
      "name": "Breakfast Menu",
      "description": "Classic favorites and chef-inspired creations.",
      "isActive": true,
      "createdAt": "2026-03-19T10:23:09.649Z",
      "updatedAt": "2026-05-16T16:20:58.444Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 155,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/menus?page=4",
    "next": "/api/v1/menus?page=5",
    "prev": "/api/v1/menus?page=3"
  }
}
Draftbit