example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 52 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": 1225,
      "menuId": 130,
      "name": "Herb-Crusted Tofu Fillet",
      "slug": "herb-crusted-tofu-fillet-1225",
      "description": "Slow-cooked to perfection with aromatic herbs and spices.",
      "price": 14.58,
      "currency": "USD",
      "foodCategoryId": 29,
      "spicyLevel": 2,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": true,
      "imageUrl": "https://picsum.photos/seed/menu-item-1225/640/480",
      "createdAt": "2024-07-18T21:09:47.344Z"
    },
    {
      "id": 1226,
      "menuId": 130,
      "name": "Steamed Beef Fillet",
      "slug": "steamed-beef-fillet-1226",
      "description": "A light yet satisfying dish with vibrant flavors.",
      "price": 75.09,
      "currency": "USD",
      "foodCategoryId": 18,
      "spicyLevel": 1,
      "isVegetarian": true,
      "isVegan": true,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-1226/640/480",
      "createdAt": "2026-04-11T12:36:24.919Z"
    },
    {
      "id": 1227,
      "menuId": 130,
      "name": "Butter-Poached Turkey Fillet",
      "slug": "butter-poached-turkey-fillet-1227",
      "description": "A delightful blend of fresh ingredients and bold spices.",
      "price": 59.83,
      "currency": "USD",
      "foodCategoryId": 2,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-1227/640/480",
      "createdAt": "2024-10-24T23:58:00.148Z"
    }
  ],
  "meta": {
    "page": 52,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=52&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=53&limit=24",
    "prev": "/api/v1/menu-items?page=51&limit=24"
  }
}