USPTO Datasets API

The Datasets API from USPTO — 3 operation(s) for datasets.

Operations 3

GET /api/v1/datasets/products/search Search Bulk Products #
GET /api/v1/datasets/products/{productIdentifier} Get Bulk Product #
GET /api/v1/datasets/products/{productIdentifier}/files/{fileName} Download Bulk Product File #

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/uspto-gov-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

uspto-gov-datasets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Bulk Data Storage System (BDSS) Datasets API
  version: '1.0'
  description: 'USPTO ODP Bulk Data API. Exposes the Bulk Data Storage System (BDSS) — search and download

    patent and trademark bulk datasets (bibliographic, assignment, classification, office-action

    weekly archives) as Entire Datasets (10-year increments) or Delta Datasets (daily increments)

    in XML/JSON. Does not support general filter/limit/offset/order_by database queries.

    '
  contact:
    name: USPTO API Help
    email: APIhelp@uspto.gov
servers:
- url: https://api.uspto.gov
  description: USPTO Open Data Portal
security:
- ApiKeyAuth: []
tags:
- name: Datasets
paths:
  /api/v1/datasets/products/search:
    get:
      summary: Search Bulk Products
      operationId: searchBulkProducts
      parameters:
      - name: q
        in: query
        schema:
          type: string
        description: Free-text query
      - name: productIdentifier
        in: query
        schema:
          type: string
      - name: categoryCode
        in: query
        schema:
          type: string
          enum:
          - PATENT
          - TRADEMARK
          - OACT
      - name: fromDate
        in: query
        schema:
          type: string
          format: date
      - name: toDate
        in: query
        schema:
          type: string
          format: date
      - name: offset
        in: query
        schema:
          type: integer
      - name: limit
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Product search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkProductSearchResponse'
      tags:
      - Datasets
  /api/v1/datasets/products/{productIdentifier}:
    get:
      summary: Get Bulk Product
      operationId: getBulkProduct
      parameters:
      - name: productIdentifier
        in: path
        required: true
        schema:
          type: string
      - name: fromDate
        in: query
        schema:
          type: string
          format: date
      - name: toDate
        in: query
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Product metadata with file list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkProduct'
      tags:
      - Datasets
  /api/v1/datasets/products/{productIdentifier}/files/{fileName}:
    get:
      summary: Download Bulk Product File
      operationId: downloadBulkProductFile
      parameters:
      - name: productIdentifier
        in: path
        required: true
        schema:
          type: string
      - name: fileName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: File binary
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
      tags:
      - Datasets
components:
  schemas:
    BulkProduct:
      type: object
      properties:
        productIdentifier:
          type: string
        productTitleText:
          type: string
        productDescriptionText:
          type: string
        productFrequencyText:
          type: string
        productFromDate:
          type: string
          format: date
        productToDate:
          type: string
          format: date
        mimeTypeIdentifierBag:
          type: array
          items:
            type: string
        productFileBag:
          type: array
          items:
            type: object
            properties:
              fileName:
                type: string
              fileSize:
                type: integer
              fileDate:
                type: string
                format: date
              fileDownloadURI:
                type: string
                format: uri
    BulkProductSearchResponse:
      type: object
      properties:
        count:
          type: integer
        bulkDataProductBag:
          type: array
          items:
            $ref: '#/components/schemas/BulkProduct'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY