example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 5 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": 97,
      "menuId": 11,
      "name": "Tangy Tofu Soup",
      "slug": "tangy-tofu-soup-97",
      "description": "Slow-cooked to perfection with aromatic herbs and spices.",
      "price": 59.79,
      "currency": "USD",
      "foodCategoryId": 29,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": true,
      "imageUrl": "https://picsum.photos/seed/menu-item-97/640/480",
      "createdAt": "2026-04-15T12:20:15.369Z"
    },
    {
      "id": 98,
      "menuId": 11,
      "name": "House Cod Skewers",
      "slug": "house-cod-skewers-98",
      "description": "Served with seasonal sides and house-made sauce.",
      "price": 61.3,
      "currency": "USD",
      "foodCategoryId": 7,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": true,
      "imageUrl": "https://picsum.photos/seed/menu-item-98/640/480",
      "createdAt": "2024-05-25T00:23:09.835Z"
    },
    {
      "id": 99,
      "menuId": 11,
      "name": "Charcoal Tempeh Wrap",
      "slug": "charcoal-tempeh-wrap-99",
      "description": "A customer favorite, crafted from locally sourced produce.",
      "price": 63.16,
      "currency": "USD",
      "foodCategoryId": 9,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-99/640/480",
      "createdAt": "2025-07-19T02:33:25.861Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=5&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=6&limit=24",
    "prev": "/api/v1/menu-items?page=4&limit=24"
  }
}