example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 6 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": 121,
      "menuId": 14,
      "name": "Spicy Cheese Steak",
      "slug": "spicy-cheese-steak-121",
      "description": "Garnished with fresh herbs and a side of dipping sauce.",
      "price": 56.47,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-121/640/480",
      "createdAt": "2025-01-12T12:47:52.179Z"
    },
    {
      "id": 122,
      "menuId": 14,
      "name": "Tangy Shrimp Roll",
      "slug": "tangy-shrimp-roll-122",
      "description": "Inspired by traditional recipes with a modern twist.",
      "price": 44.94,
      "currency": "USD",
      "foodCategoryId": 7,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": true,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-122/640/480",
      "createdAt": "2024-06-21T08:20:24.597Z"
    },
    {
      "id": 123,
      "menuId": 14,
      "name": "Spicy Tempeh Tacos",
      "slug": "spicy-tempeh-tacos-123",
      "description": "Finished with a drizzle of extra virgin olive oil.",
      "price": 67.63,
      "currency": "USD",
      "foodCategoryId": 30,
      "spicyLevel": 1,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-123/640/480",
      "createdAt": "2025-06-08T14:22:31.498Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=6&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=7&limit=24",
    "prev": "/api/v1/menu-items?page=5&limit=24"
  }
}