USPTO Open Data Portal API — PTAB Appeals

USPTO Open Data Portal API — PTAB Appeals. 3 operations. Lead operation: Search PTAB Appeal Decisions by JSON Payload. Self-contained Naftiko capability covering one Us Patent And Trademark Office business surface.

Run with Naftiko Us Patent And Trademark OfficePTAB Appeals

What You Can Do

POST
Searchptabappealdecisionspost — Search PTAB Appeal Decisions by JSON Payload
/v1/api/v1/patent/appeals/decisions/search
GET
Searchptabappealdecisionsget — Search PTAB Appeal Decisions by Query Parameters
/v1/api/v1/patent/appeals/decisions/search
GET
Getptabappealdecision — Get PTAB Appeal Decision by Document Identifier
/v1/api/v1/patent/appeals/decisions/{documentidentifier}

MCP Tools

search-ptab-appeal-decisions-json

Search PTAB Appeal Decisions by JSON Payload

read-only
search-ptab-appeal-decisions-query

Search PTAB Appeal Decisions by Query Parameters

read-only idempotent
get-ptab-appeal-decision-document

Get PTAB Appeal Decision by Document Identifier

read-only idempotent

Capability Spec

uspto-open-data-portal-ptab-appeals.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: USPTO Open Data Portal API — PTAB Appeals
  description: 'USPTO Open Data Portal API — PTAB Appeals. 3 operations. Lead operation: Search PTAB Appeal Decisions by JSON
    Payload. Self-contained Naftiko capability covering one Us Patent And Trademark Office business surface.'
  tags:
  - Us Patent And Trademark Office
  - PTAB Appeals
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    US_PATENT_AND_TRADEMARK_OFFICE_API_KEY: US_PATENT_AND_TRADEMARK_OFFICE_API_KEY
capability:
  consumes:
  - type: http
    namespace: uspto-open-data-portal-ptab-appeals
    baseUri: https://api.uspto.gov
    description: USPTO Open Data Portal API — PTAB Appeals business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-patent-appeals-decisions-search
      path: /api/v1/patent/appeals/decisions/search
      operations:
      - name: searchptabappealdecisionspost
        method: POST
        description: Search PTAB Appeal Decisions by JSON Payload
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: searchptabappealdecisionsget
        method: GET
        description: Search PTAB Appeal Decisions by Query Parameters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: q
          in: query
          type: string
        - name: start
          in: query
          type: integer
        - name: rows
          in: query
          type: integer
    - name: api-v1-patent-appeals-decisions-documentIdentifier
      path: /api/v1/patent/appeals/decisions/{documentIdentifier}
      operations:
      - name: getptabappealdecision
        method: GET
        description: Get PTAB Appeal Decision by Document Identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: documentIdentifier
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-API-KEY
      value: '{{env.US_PATENT_AND_TRADEMARK_OFFICE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: uspto-open-data-portal-ptab-appeals-rest
    port: 8080
    description: REST adapter for USPTO Open Data Portal API — PTAB Appeals. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v1/patent/appeals/decisions/search
      name: api-v1-patent-appeals-decisions-search
      description: REST surface for api-v1-patent-appeals-decisions-search.
      operations:
      - method: POST
        name: searchptabappealdecisionspost
        description: Search PTAB Appeal Decisions by JSON Payload
        call: uspto-open-data-portal-ptab-appeals.searchptabappealdecisionspost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: searchptabappealdecisionsget
        description: Search PTAB Appeal Decisions by Query Parameters
        call: uspto-open-data-portal-ptab-appeals.searchptabappealdecisionsget
        with:
          q: rest.q
          start: rest.start
          rows: rest.rows
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/patent/appeals/decisions/{documentidentifier}
      name: api-v1-patent-appeals-decisions-documentidentifier
      description: REST surface for api-v1-patent-appeals-decisions-documentIdentifier.
      operations:
      - method: GET
        name: getptabappealdecision
        description: Get PTAB Appeal Decision by Document Identifier
        call: uspto-open-data-portal-ptab-appeals.getptabappealdecision
        with:
          documentIdentifier: rest.documentIdentifier
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: uspto-open-data-portal-ptab-appeals-mcp
    port: 9090
    transport: http
    description: MCP adapter for USPTO Open Data Portal API — PTAB Appeals. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: search-ptab-appeal-decisions-json
      description: Search PTAB Appeal Decisions by JSON Payload
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: uspto-open-data-portal-ptab-appeals.searchptabappealdecisionspost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: search-ptab-appeal-decisions-query
      description: Search PTAB Appeal Decisions by Query Parameters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: uspto-open-data-portal-ptab-appeals.searchptabappealdecisionsget
      with:
        q: tools.q
        start: tools.start
        rows: tools.rows
      outputParameters:
      - type: object
        mapping: $.
    - name: get-ptab-appeal-decision-document
      description: Get PTAB Appeal Decision by Document Identifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: uspto-open-data-portal-ptab-appeals.getptabappealdecision
      with:
        documentIdentifier: tools.documentIdentifier
      outputParameters:
      - type: object
        mapping: $.