example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 31 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": 721,
      "menuId": 75,
      "name": "Spicy Turkey Bowl",
      "slug": "spicy-turkey-bowl-721",
      "description": "A light yet satisfying dish with vibrant flavors.",
      "price": 18.1,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-721/640/480",
      "createdAt": "2025-09-29T02:24:11.373Z"
    },
    {
      "id": 722,
      "menuId": 75,
      "name": "Braised Lobster Flatbread",
      "slug": "braised-lobster-flatbread-722",
      "description": "Inspired by traditional recipes with a modern twist.",
      "price": 78.81,
      "currency": "USD",
      "foodCategoryId": 2,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-722/640/480",
      "createdAt": "2024-08-01T23:40:31.499Z"
    },
    {
      "id": 723,
      "menuId": 75,
      "name": "Fire-Roasted Salmon Bowl",
      "slug": "fire-roasted-salmon-bowl-723",
      "description": "Light and refreshing with a hint of citrus and herbs.",
      "price": 39.51,
      "currency": "USD",
      "foodCategoryId": 14,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-723/640/480",
      "createdAt": "2026-03-25T14:21:42.825Z"
    }
  ],
  "meta": {
    "page": 31,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=31&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=32&limit=24",
    "prev": "/api/v1/menu-items?page=30&limit=24"
  }
}