example-data.com

menus

menus

Page 6 of 7.

restaurantId
Jaskolski LLC · East Elmira · ★ 4.1
name
À La Carte Menu
description
From light bites to hearty entrees, something for everyone.
isActive
true
createdAt
updatedAt
restaurantId
Medhurst, Effertz and Brown · Franeckiburgh · ★ 3.2
name
Family Menu
description
A thoughtfully designed menu for every palate.
isActive
false
createdAt
updatedAt
restaurantId
Medhurst, Effertz and Brown · Franeckiburgh · ★ 3.2
name
Family Menu
description
A curated selection of our finest dishes for the occasion.
isActive
true
createdAt
updatedAt
restaurantId
Howe, Kunde and Ortiz · Rosemead · ★ 4.9
name
Kids Menu
description
Premium selections paired with exceptional flavors.
isActive
true
createdAt
updatedAt
restaurantId
Howe, Kunde and Ortiz · Rosemead · ★ 4.9
name
Breakfast Menu
description
From light bites to hearty entrees, something for everyone.
isActive
true
createdAt
updatedAt
restaurantId
Heathcote Group · New Eduardoboro · ★ 4.0
name
Breakfast Menu
description
Premium selections paired with exceptional flavors.
isActive
false
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": 121,
      "restaurantId": 77,
      "name": "À La Carte Menu",
      "description": "From light bites to hearty entrees, something for everyone.",
      "isActive": true,
      "createdAt": "2026-04-05T09:59:27.351Z",
      "updatedAt": "2026-04-20T00:01:05.461Z"
    },
    {
      "id": 122,
      "restaurantId": 78,
      "name": "Family Menu",
      "description": "A thoughtfully designed menu for every palate.",
      "isActive": false,
      "createdAt": "2024-08-01T05:21:04.379Z",
      "updatedAt": "2025-01-19T04:06:04.569Z"
    },
    {
      "id": 123,
      "restaurantId": 78,
      "name": "Family Menu",
      "description": "A curated selection of our finest dishes for the occasion.",
      "isActive": true,
      "createdAt": "2024-09-13T02:03:21.789Z",
      "updatedAt": "2025-01-15T17:50:18.898Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 155,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/menus?page=6",
    "next": "/api/v1/menus?page=7",
    "prev": "/api/v1/menus?page=5"
  }
}
Draftbit