US Patent and Trademark Office PTAB Appeals API

All public decisions filed in PTAB Appeals

Operations 3

POST /api/v1/patent/appeals/decisions/search Search PTAB Appeal Decisions by JSON Payload #
GET /api/v1/patent/appeals/decisions/search Search PTAB Appeal Decisions by Query Parameters #
GET /api/v1/patent/appeals/decisions/{documentIdentifier} Get PTAB Appeal Decision by Document 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-appeals-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-appeals-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Open Data Portal PTAB Appeals 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 Appeals
  description: All public decisions filed in PTAB Appeals
paths:
  /api/v1/patent/appeals/decisions/search:
    post:
      tags:
      - PTAB Appeals
      operationId: searchPtabAppealDecisionsPost
      summary: Search PTAB Appeal Decisions by JSON Payload
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: PTAB appeal decisions search results
          content:
            application/json:
              schema:
                type: object
    get:
      tags:
      - PTAB Appeals
      operationId: searchPtabAppealDecisionsGet
      summary: Search PTAB Appeal Decisions 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 appeal decisions search results
          content:
            application/json:
              schema:
                type: object
  /api/v1/patent/appeals/decisions/{documentIdentifier}:
    get:
      tags:
      - PTAB Appeals
      operationId: getPtabAppealDecision
      summary: Get PTAB Appeal Decision by Document Identifier
      parameters:
      - name: documentIdentifier
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: PTAB appeal decision details
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Not Found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY