example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 2 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": 25,
      "menuId": 3,
      "name": "Seasonal Veggie Roll",
      "slug": "seasonal-veggie-roll-25",
      "description": "Slow-cooked to perfection with aromatic herbs and spices.",
      "price": 58.88,
      "currency": "USD",
      "foodCategoryId": 27,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-25/640/480",
      "createdAt": "2026-03-20T21:02:35.305Z"
    },
    {
      "id": 26,
      "menuId": 3,
      "name": "Herb-Crusted Chicken Tacos",
      "slug": "herb-crusted-chicken-tacos-26",
      "description": "A crowd-pleasing selection that never disappoints.",
      "price": 40.55,
      "currency": "USD",
      "foodCategoryId": 21,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": true,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-26/640/480",
      "createdAt": "2025-01-19T01:57:26.488Z"
    },
    {
      "id": 27,
      "menuId": 3,
      "name": "Seasonal Salmon Bowl",
      "slug": "seasonal-salmon-bowl-27",
      "description": "Rich flavors layered with care by our kitchen team.",
      "price": 52.95,
      "currency": "USD",
      "foodCategoryId": 5,
      "spicyLevel": 2,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-27/640/480",
      "createdAt": "2025-11-17T05:40:22.079Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=2&limit=24",
    "first": "/api/v1/menu-items?page=1&limit=24",
    "last": "/api/v1/menu-items?page=61&limit=24",
    "next": "/api/v1/menu-items?page=3&limit=24",
    "prev": "/api/v1/menu-items?page=1&limit=24"
  }
}