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

Historical menu records and pages.

Operations 5

GET /menus List menus
GET /menus/{id} Get menu
GET /menus/{id}/pages Get menu pages
GET /menus/{id}/dishes Get menu dishes
GET /menus/search Search menus

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-menus-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-menus-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NYPL What's On The Menu Dishes Menus 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: Menus
  description: Historical menu records and pages.
paths:
  /menus:
    get:
      tags:
      - Menus
      summary: List menus
      description: List menus with optional filtering. 50 menus 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:
          - date
          - name
          - dish_count
      - name: status
        in: query
        schema:
          type: string
          enum:
          - complete
          - under_review
          - to_transcribe
      responses:
        '200':
          description: Collection of menus.
  /menus/{id}:
    get:
      tags:
      - Menus
      summary: Get menu
      description: Retrieve a specific menu by ID.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Single menu.
  /menus/{id}/pages:
    get:
      tags:
      - Menus
      summary: Get menu pages
      description: List pages associated with the given menu.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Pages of the menu.
  /menus/{id}/dishes:
    get:
      tags:
      - Menus
      summary: Get menu dishes
      description: List dishes that appear on the given menu.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Dishes on the menu.
  /menus/search:
    get:
      tags:
      - Menus
      summary: Search menus
      description: Full-text search across menus.
      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".