USPTO PTAB API

Patent Trial and Appeal Board proceedings

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-ptab-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 email required.

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

OpenAPI Specification

uspto-ptab-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: USPTO Patent & Trademark Assignments PTAB API
  description: The United States Patent and Trademark Office (USPTO) provides REST APIs for patent search, PTAB trial proceedings, trademark status lookup, and patent citation data. APIs are hosted at developer.uspto.gov and data.uspto.gov. An ODP API key is required for most endpoints.
  version: '3.0'
  contact:
    name: USPTO Open Data Portal
    url: https://developer.uspto.gov/
  license:
    name: Public Domain (U.S. Government Work)
    url: https://www.usa.gov/government-works
servers:
- url: https://data.uspto.gov/api/v1
  description: USPTO Open Data Portal API v1
- url: https://developer.uspto.gov/ds-api
  description: USPTO Data Set API (legacy)
security:
- ApiKeyHeader: []
tags:
- name: PTAB
  description: Patent Trial and Appeal Board proceedings
paths:
  /ptab/trials:
    get:
      operationId: searchPTABTrials
      summary: Search PTAB trial proceedings
      description: Searches Patent Trial and Appeal Board (PTAB) proceedings including Inter Partes Reviews (IPR), Post-Grant Reviews (PGR), and Covered Business Method (CBM) reviews.
      tags:
      - PTAB
      parameters:
      - name: patentNumber
        in: query
        schema:
          type: string
        description: Challenged patent number
      - name: petitionerName
        in: query
        schema:
          type: string
      - name: patentOwnerName
        in: query
        schema:
          type: string
      - name: proceedingType
        in: query
        schema:
          type: string
          enum:
          - IPR
          - PGR
          - CBM
          - DER
          - POP
        description: Type of PTAB proceeding
      - name: filingDateStart
        in: query
        schema:
          type: string
          format: date
      - name: filingDateEnd
        in: query
        schema:
          type: string
          format: date
      - name: status
        in: query
        schema:
          type: string
          enum:
          - INSTITUTED
          - DENIED
          - TERMINATED
          - SETTLED
          - PENDING
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
      - name: limit
        in: query
        schema:
          type: integer
          default: 25
      responses:
        '200':
          description: PTAB trial search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PTABTrialSearchResponse'
  /ptab/trials/{trialNumber}:
    get:
      operationId: getPTABTrial
      summary: Get PTAB trial details
      description: Returns detailed information for a specific PTAB trial proceeding.
      tags:
      - PTAB
      parameters:
      - name: trialNumber
        in: path
        required: true
        description: PTAB trial number (e.g., IPR2023-00001)
        schema:
          type: string
        example: IPR2023-00001
      responses:
        '200':
          description: PTAB trial details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PTABTrial'
        '404':
          description: Trial not found
  /ptab/decisions/search:
    get:
      operationId: searchPTABDecisions
      summary: Search PTAB decisions
      description: Searches PTAB decisions by trial number, date, or keyword.
      tags:
      - PTAB
      parameters:
      - name: searchText
        in: query
        schema:
          type: string
        description: Full-text search in decision documents
      - name: proceedingType
        in: query
        schema:
          type: string
          enum:
          - IPR
          - PGR
          - CBM
      - name: decisionType
        in: query
        schema:
          type: string
          enum:
          - INSTITUTION
          - FINAL_WRITTEN_DECISION
          - CLAIM_CONSTRUCTION
      - name: dateStart
        in: query
        schema:
          type: string
          format: date
      - name: dateEnd
        in: query
        schema:
          type: string
          format: date
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
      - name: limit
        in: query
        schema:
          type: integer
          default: 25
      responses:
        '200':
          description: PTAB decision results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PTABDecisionSearchResponse'
components:
  schemas:
    PTABDecisionSearchResponse:
      type: object
      properties:
        decisions:
          type: array
          items:
            type: object
            properties:
              trialNumber:
                type: string
              decisionType:
                type: string
              decisionDate:
                type: string
                format: date
              documentUrl:
                type: string
                format: uri
        totalResults:
          type: integer
    PTABTrialSummary:
      type: object
      properties:
        trialNumber:
          type: string
        proceedingType:
          type: string
          enum:
          - IPR
          - PGR
          - CBM
          - DER
          - POP
        status:
          type: string
        patentNumber:
          type: string
        petitionerName:
          type: string
        patentOwnerName:
          type: string
        filingDate:
          type: string
          format: date
        institutionDate:
          type: string
          format: date
          nullable: true
        finalDecisionDate:
          type: string
          format: date
          nullable: true
    PTABTrialSearchResponse:
      type: object
      properties:
        trials:
          type: array
          items:
            $ref: '#/components/schemas/PTABTrialSummary'
        totalResults:
          type: integer
        offset:
          type: integer
    PTABTrial:
      allOf:
      - $ref: '#/components/schemas/PTABTrialSummary'
      - type: object
        properties:
          contestedClaims:
            type: array
            items:
              type: integer
          groundsOfChallenge:
            type: array
            items:
              type: object
              properties:
                claimNumbers:
                  type: array
                  items:
                    type: integer
                priorArtType:
                  type: string
                  enum:
                  - ANTICIPATION
                  - OBVIOUSNESS
                  - WRITTEN_DESCRIPTION
                priorArtReferences:
                  type: array
                  items:
                    type: string
          documents:
            type: array
            items:
              type: object
              properties:
                documentId:
                  type: string
                documentType:
                  type: string
                filedBy:
                  type: string
                filingDate:
                  type: string
                  format: date
                documentUrl:
                  type: string
                  format: uri
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-KEY
      description: USPTO Open Data Portal API key