US Patent and Trademark Office Petition Decisions API

Search and retrieve petition decision records

Operations 3

POST /api/v1/petition/decisions/search Search Petition Decisions by JSON Payload #
GET /api/v1/petition/decisions/search Search Petition Decisions by Query Parameters #
GET /api/v1/petition/decisions/{petitionDecisionRecordIdentifier} Get Petition Decision 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-petition-decisions-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-petition-decisions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Open Data Portal Petition Decisions 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: Petition Decisions
  description: Search and retrieve petition decision records
paths:
  /api/v1/petition/decisions/search:
    post:
      tags:
      - Petition Decisions
      operationId: searchPetitionDecisionsPost
      summary: Search Petition Decisions by JSON Payload
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                q:
                  type: string
                  description: Search query string
                dateRangeData:
                  type: object
                  properties:
                    startDate:
                      type: string
                      format: date
                    endDate:
                      type: string
                      format: date
      responses:
        '200':
          description: Petition decision search results
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Forbidden
    get:
      tags:
      - Petition Decisions
      operationId: searchPetitionDecisionsGet
      summary: Search Petition 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: Petition decision search results
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Forbidden
  /api/v1/petition/decisions/{petitionDecisionRecordIdentifier}:
    get:
      tags:
      - Petition Decisions
      operationId: getPetitionDecision
      summary: Get Petition Decision by Identifier
      parameters:
      - name: petitionDecisionRecordIdentifier
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Petition decision details
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Not Found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY