USPTO Application API

Retrieve patent application data

Operations 7

GET /api/v1/patent/applications/{applicationNumberText} Get Patent Application #
GET /api/v1/patent/applications/{applicationNumberText}/meta-data Get Patent Application Metadata #
GET /api/v1/patent/applications/{applicationNumberText}/adjustment Get Patent Term Adjustment #
GET /api/v1/patent/applications/{applicationNumberText}/attorney Get Application Attorney/Agent #
GET /api/v1/patent/applications/{applicationNumberText}/continuity Get Application Continuity #
GET /api/v1/patent/applications/{applicationNumberText}/foreign-priority Get Application Foreign Priority #
GET /api/v1/patent/applications/{applicationNumberText}/transactions Get Application Transactions #

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-application-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-application-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Patent File Wrapper Application API
  version: '1.0'
  description: 'USPTO Open Data Portal (ODP) Patent File Wrapper API. Search and retrieve U.S. patent

    application file wrappers including bibliographic data, assignment history, prosecution

    documents (office actions, responses, claims, drawings), continuity, foreign priority,

    attorney/agent info, and patent term adjustments. Requires an ODP API key.

    '
  contact:
    name: USPTO API Help
    email: APIhelp@uspto.gov
    url: https://data.uspto.gov/apis/getting-started
  license:
    name: U.S. Government Work
    url: https://www.usa.gov/government-works
servers:
- url: https://api.uspto.gov
  description: USPTO Open Data Portal
security:
- ApiKeyAuth: []
tags:
- name: Application
  description: Retrieve patent application data
paths:
  /api/v1/patent/applications/{applicationNumberText}:
    get:
      tags:
      - Application
      summary: Get Patent Application
      operationId: getPatentApplication
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Patent application file wrapper.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PatentApplication'
        '404':
          $ref: '#/components/responses/NotFound'
  /api/v1/patent/applications/{applicationNumberText}/meta-data:
    get:
      tags:
      - Application
      summary: Get Patent Application Metadata
      operationId: getPatentApplicationMetadata
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Application metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PatentApplication'
  /api/v1/patent/applications/{applicationNumberText}/adjustment:
    get:
      tags:
      - Application
      summary: Get Patent Term Adjustment
      operationId: getPatentTermAdjustment
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Patent term adjustment data.
          content:
            application/json:
              schema:
                type: object
  /api/v1/patent/applications/{applicationNumberText}/attorney:
    get:
      tags:
      - Application
      summary: Get Application Attorney/Agent
      operationId: getApplicationAttorney
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Attorney/agent information.
          content:
            application/json:
              schema:
                type: object
  /api/v1/patent/applications/{applicationNumberText}/continuity:
    get:
      tags:
      - Application
      summary: Get Application Continuity
      operationId: getApplicationContinuity
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Parent/child continuity relationships.
          content:
            application/json:
              schema:
                type: object
  /api/v1/patent/applications/{applicationNumberText}/foreign-priority:
    get:
      tags:
      - Application
      summary: Get Application Foreign Priority
      operationId: getApplicationForeignPriority
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Foreign priority claims.
          content:
            application/json:
              schema:
                type: object
  /api/v1/patent/applications/{applicationNumberText}/transactions:
    get:
      tags:
      - Application
      summary: Get Application Transactions
      operationId: getApplicationTransactions
      parameters:
      - name: applicationNumberText
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Prosecution transaction history.
          content:
            application/json:
              schema:
                type: object
components:
  responses:
    NotFound:
      description: Resource not found.
  schemas:
    PatentApplication:
      type: object
      properties:
        applicationNumberText:
          type: string
        patentNumber:
          type: string
        filingDate:
          type: string
          format: date
        grantDate:
          type: string
          format: date
        publicationDate:
          type: string
          format: date
        publicationNumber:
          type: string
        applicationTypeCategory:
          type: string
        applicationStatusCode:
          type: string
        applicationStatusDescriptionText:
          type: string
        applicationStatusDate:
          type: string
          format: date
        inventionTitle:
          type: string
        firstInventorToFileIndicator:
          type: string
        examinerNameText:
          type: string
        groupArtUnitNumber:
          type: string
        classSubclass:
          type: string
        cpcClassificationBag:
          type: array
          items:
            type: string
        applicantBag:
          type: array
          items:
            $ref: '#/components/schemas/Party'
        inventorBag:
          type: array
          items:
            $ref: '#/components/schemas/Party'
        correspondenceAddressBag:
          type: array
          items:
            type: object
    Party:
      type: object
      properties:
        firstName:
          type: string
        lastName:
          type: string
        nameLineOneText:
          type: string
        country:
          type: string
        cityName:
          type: string
        geographicRegionName:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY