US Patent and Trademark Office Bulk Datasets API

Access bulk raw public data from the Chief Economist office

Operations 2

GET /api/v1/datasets/products/search Search Bulk Dataset Products #
GET /api/v1/datasets/products/{productIdentifier} Get Bulk Dataset Product by Identifier #

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/us-patent-and-trademark-office-bulk-datasets-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

us-patent-and-trademark-office-bulk-datasets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Open Data Portal Bulk Datasets API
  description: The USPTO Open Data Portal (ODP) API allows public users to discover, search, and extract USPTO patent, trademark, PTAB trial, petition decision, and bulk dataset data at no cost. An ODP API key is required, passed via the X-API-KEY request header.
  version: 1.0.0
  contact:
    name: USPTO
    email: data@uspto.gov
    url: https://data.uspto.gov/apis/getting-started
  x-source-url: https://data.uspto.gov/swagger/swagger.yaml
servers:
- url: https://api.uspto.gov
security:
- ApiKeyAuth: []
tags:
- name: Bulk Datasets
  description: Access bulk raw public data from the Chief Economist office
paths:
  /api/v1/datasets/products/search:
    get:
      tags:
      - Bulk Datasets
      operationId: searchDatasetProducts
      summary: Search Bulk Dataset Products
      description: Search available USPTO bulk data products.
      parameters:
      - name: q
        in: query
        schema:
          type: string
      - name: start
        in: query
        schema:
          type: integer
          default: 0
      - name: rows
        in: query
        schema:
          type: integer
          default: 25
      responses:
        '200':
          description: Dataset products list
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Forbidden
  /api/v1/datasets/products/{productIdentifier}:
    get:
      tags:
      - Bulk Datasets
      operationId: getDatasetProduct
      summary: Get Bulk Dataset Product by Identifier
      parameters:
      - name: productIdentifier
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Dataset product details
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Not Found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY