US Patent and Trademark Office PTAB Trials Documents API

All public documents filed in PTAB Trials

Operations 3

POST /api/v1/patent/trials/documents/search Search PTAB Trial Documents by JSON Payload #
GET /api/v1/patent/trials/documents/search Search PTAB Trial Documents by Query Parameters #
GET /api/v1/patent/trials/documents/{documentIdentifier} Get PTAB Trial Document 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-ptab-trials-documents-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-ptab-trials-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Open Data Portal PTAB Trials Documents 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: PTAB Trials Documents
  description: All public documents filed in PTAB Trials
paths:
  /api/v1/patent/trials/documents/search:
    post:
      tags:
      - PTAB Trials Documents
      operationId: searchPtabDocumentsPost
      summary: Search PTAB Trial Documents by JSON Payload
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: PTAB documents search results
          content:
            application/json:
              schema:
                type: object
    get:
      tags:
      - PTAB Trials Documents
      operationId: searchPtabDocumentsGet
      summary: Search PTAB Trial Documents by Query Parameters
      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: PTAB documents search results
          content:
            application/json:
              schema:
                type: object
  /api/v1/patent/trials/documents/{documentIdentifier}:
    get:
      tags:
      - PTAB Trials Documents
      operationId: getPtabDocument
      summary: Get PTAB Trial Document by Identifier
      parameters:
      - name: documentIdentifier
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: PTAB document details
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Not Found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY