> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superdocs.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Request Upgrade

> For a FULLY AUTONOMOUS agent with no human who can upgrade: register interest in paying directly.

We don't offer agent-native (no-human) payment yet, but we're gauging demand.
Call this with your `sk_` key when you've hit your cap and genuinely cannot
involve a human. We record it and follow up (or reach hello@superdocs.app).
If a human CAN help, use POST /v1/agents/handoff instead — that upgrades you now.



## OpenAPI

````yaml /openapi.json post /v1/agents/request-upgrade
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/agents/request-upgrade:
    post:
      tags:
        - agents
      summary: Agent Request Upgrade
      description: >-
        For a FULLY AUTONOMOUS agent with no human who can upgrade: register
        interest in paying directly.


        We don't offer agent-native (no-human) payment yet, but we're gauging
        demand.

        Call this with your `sk_` key when you've hit your cap and genuinely
        cannot

        involve a human. We record it and follow up (or reach
        hello@superdocs.app).

        If a human CAN help, use POST /v1/agents/handoff instead — that upgrades
        you now.
      operationId: agent_request_upgrade_v1_agents_request_upgrade_post
      parameters:
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/AgentUpgradeRequest'
                - type: 'null'
              title: Body
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    AgentUpgradeRequest:
      properties:
        note:
          anyOf:
            - type: string
              maxLength: 1000
            - type: 'null'
          title: Note
          description: 'Optional: your use case, or why you can''t involve a human.'
      type: object
      title: AgentUpgradeRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````