New York Public Library What's On The Menu Dishes API

Dish records appearing across menus.

Operations 4

GET /dishes List dishes
GET /dishes/{id} Get dish
GET /dishes/{id}/menus Get menus for a dish
GET /dishes/search Search dishes

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/new-york-public-library-whats-on-the-menu-dishes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

new-york-public-library-whats-on-the-menu-dishes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NYPL What's On The Menu Dishes API
  description: The New York Public Library's What's On The Menu API provides programmatic access to over 17,000 historical restaurant menus from the New York City area dating back to the 1850s. Explore menus, pages, and dishes including prices, names, dates, and full-text search across the dataset.
  version: '1.0'
  contact:
    name: NYPL Menus API
    email: menus@nypl.org
    url: http://nypl.github.io/menus-api/
servers:
- url: http://api.menus.nypl.org
  description: Production
security:
- apiToken: []
tags:
- name: Dishes
  description: Dish records appearing across menus.
paths:
  /dishes:
    get:
      tags:
      - Dishes
      summary: List dishes
      description: List dishes with optional filtering. 100 dishes per page by default.
      parameters:
      - name: min_year
        in: query
        schema:
          type: integer
      - name: max_year
        in: query
        schema:
          type: integer
      - name: sort_by
        in: query
        schema:
          type: string
          enum:
          - name
          - date
          - popularity
          - obscurity
      responses:
        '200':
          description: Collection of dishes.
  /dishes/{id}:
    get:
      tags:
      - Dishes
      summary: Get dish
      description: Retrieve a specific dish by ID.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Single dish.
  /dishes/{id}/menus:
    get:
      tags:
      - Dishes
      summary: Get menus for a dish
      description: List menus that contain the given dish.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Menus containing the dish.
  /dishes/search:
    get:
      tags:
      - Dishes
      summary: Search dishes
      description: Full-text search across dishes.
      parameters:
      - name: query
        in: query
        required: true
        schema:
          type: string
      - name: sort_by
        in: query
        schema:
          type: string
          enum:
          - relevance
          - date
          - name
          - popularity
          - obscurity
      responses:
        '200':
          description: Search results.
components:
  securitySchemes:
    apiToken:
      type: apiKey
      in: query
      name: token
      description: 26-character API token. Request access by emailing menus@nypl.org with subject "API ACCESS".