USPTO Proceedings API

PTAB trial proceedings

Operations 2

GET /api/v1/ptab/proceedings/search Search Proceedings #
GET /api/v1/ptab/proceedings/{proceedingNumber} Get Proceeding #

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-proceedings-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-proceedings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Patent Trial and Appeal Board (PTAB) Proceedings API
  version: '3.0'
  description: 'PTAB API v3 hosted on the USPTO Open Data Portal. Search and retrieve PTAB trial proceedings

    (IPR, PGR, CBM, derivation), trial decisions, trial documents, and historical appeal/interference

    decisions. Coverage 1997 to present; full trial decisions and party briefing since September 2012.

    '
  contact:
    name: USPTO API Help
    email: APIhelp@uspto.gov
servers:
- url: https://api.uspto.gov
  description: USPTO Open Data Portal
security:
- ApiKeyAuth: []
tags:
- name: Proceedings
  description: PTAB trial proceedings
paths:
  /api/v1/ptab/proceedings/search:
    get:
      tags:
      - Proceedings
      summary: Search Proceedings
      operationId: searchPtabProceedings
      parameters:
      - name: proceedingNumber
        in: query
        schema:
          type: string
      - name: proceedingTypeCategory
        in: query
        schema:
          type: string
          enum:
          - IPR
          - PGR
          - CBM
          - DER
      - name: proceedingFilingDateFrom
        in: query
        schema:
          type: string
          format: date
      - name: proceedingFilingDateTo
        in: query
        schema:
          type: string
          format: date
      - name: subProceedingTypeCategory
        in: query
        schema:
          type: string
      - name: offset
        in: query
        schema:
          type: integer
      - name: limit
        in: query
        schema:
          type: integer
          default: 25
          maximum: 100
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProceedingSearchResponse'
  /api/v1/ptab/proceedings/{proceedingNumber}:
    get:
      tags:
      - Proceedings
      summary: Get Proceeding
      operationId: getPtabProceeding
      parameters:
      - name: proceedingNumber
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Proceeding detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Proceeding'
components:
  schemas:
    ProceedingSearchResponse:
      type: object
      properties:
        count:
          type: integer
        results:
          type: array
          items:
            $ref: '#/components/schemas/Proceeding'
    Proceeding:
      type: object
      properties:
        proceedingNumber:
          type: string
        proceedingTypeCategory:
          type: string
        subProceedingTypeCategory:
          type: string
        proceedingFilingDate:
          type: string
          format: date
        proceedingStatusCategory:
          type: string
        respondentPatentNumber:
          type: string
        respondentApplicationNumberText:
          type: string
        petitionerPartyName:
          type: string
        respondentPartyName:
          type: string
        accordedFilingDate:
          type: string
          format: date
        decisionDate:
          type: string
          format: date
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY