example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 61 of 61.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/menu-items?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/menu-items?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/menu-items.d.ts https://example-data.com/types/menu-items.d.ts
import type { MenuItem, ListEnvelope } from "./types/menu-items";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/menu-items",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 1441,
      "menuId": 154,
      "name": "Charcoal Lamb Skewers",
      "slug": "charcoal-lamb-skewers-1441",
      "description": "Topped with house-made salsa and a squeeze of fresh lime.",
      "price": 7.55,
      "currency": "USD",
      "foodCategoryId": 22,
      "spicyLevel": 2,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-1441/640/480",
      "createdAt": "2025-09-16T19:54:34.758Z"
    },
    {
      "id": 1442,
      "menuId": 154,
      "name": "Steamed Scallops Curry",
      "slug": "steamed-scallops-curry-1442",
      "description": "Inspired by traditional recipes with a modern twist.",
      "price": 35.77,
      "currency": "USD",
      "foodCategoryId": 17,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-1442/640/480",
      "createdAt": "2024-09-14T23:40:02.358Z"
    },
    {
      "id": 1443,
      "menuId": 154,
      "name": "Signature Lobster Tacos",
      "slug": "signature-lobster-tacos-1443",
      "description": "A hearty choice for those who love bold, satisfying meals.",
      "price": 63.95,
      "currency": "USD",
      "foodCategoryId": 4,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": true,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-1443/640/480",
      "createdAt": "2025-04-03T06:46:34.477Z"
    }
  ],
  "meta": {
    "page": 61,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=61&limit=24",
    "first": "/api/v1/menu-items?page=1&limit=24",
    "last": "/api/v1/menu-items?page=61&limit=24",
    "next": null,
    "prev": "/api/v1/menu-items?page=60&limit=24"
  }
}