example-data.com
Menu
Browse docs and collections

menu-items

menu-items

Page 42 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": 985,
      "menuId": 103,
      "name": "Braised Lamb Salad",
      "slug": "braised-lamb-salad-985",
      "description": "Inspired by traditional recipes with a modern twist.",
      "price": 48.98,
      "currency": "USD",
      "foodCategoryId": 8,
      "spicyLevel": 3,
      "isVegetarian": false,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-985/640/480",
      "createdAt": "2026-03-30T22:50:51.214Z"
    },
    {
      "id": 986,
      "menuId": 103,
      "name": "Grilled Chicken Burger",
      "slug": "grilled-chicken-burger-986",
      "description": "Served with seasonal sides and house-made sauce.",
      "price": 65.66,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-986/640/480",
      "createdAt": "2024-12-07T15:40:26.996Z"
    },
    {
      "id": 987,
      "menuId": 103,
      "name": "Butter-Poached Pork Soup",
      "slug": "butter-poached-pork-soup-987",
      "description": "Garnished with fresh herbs and a side of dipping sauce.",
      "price": 32.67,
      "currency": "USD",
      "foodCategoryId": null,
      "spicyLevel": 0,
      "isVegetarian": true,
      "isVegan": false,
      "isGlutenFree": false,
      "imageUrl": "https://picsum.photos/seed/menu-item-987/640/480",
      "createdAt": "2026-04-21T02:29:04.844Z"
    }
  ],
  "meta": {
    "page": 42,
    "limit": 24,
    "total": 1450,
    "totalPages": 61
  },
  "links": {
    "self": "/api/v1/menu-items?page=42&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=43&limit=24",
    "prev": "/api/v1/menu-items?page=41&limit=24"
  }
}