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

# Request payout

> Request a USDC payout to your wallet. Supports idempotency via Idempotency-Key header.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/operator/payout
openapi: 3.1.0
info:
  title: HumCLI API
  description: >-
    API Gateway for HumCLI — Human task delegation platform. Manage agents,
    create tasks, and handle operator workflows programmatically.
  version: 1.0.0
  contact:
    name: HumCLI Support
    email: support@humcli.com
servers:
  - url: https://api.humcli.com
    description: Production
security: []
tags:
  - name: Agents
    description: Agent registration, API keys, wallet, and deposits
  - name: Tasks
    description: Task creation, management, and verification
  - name: Operators
    description: Operator registration, task browsing, earnings, and payouts
  - name: Webhooks
    description: Inbound webhook callbacks
paths:
  /api/v1/operator/payout:
    post:
      tags:
        - Operators
      summary: Request payout
      description: >-
        Request a USDC payout to your wallet. Supports idempotency via
        Idempotency-Key header.
      operationId: operatorRequestPayout
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutRequest'
      responses:
        '200':
          description: Payout submitted on-chain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutResponse'
        '402':
          description: Insufficient available balance
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - bearerAuth: []
components:
  schemas:
    PayoutRequest:
      type: object
      properties:
        amount_usd:
          type: number
          minimum: 10
        method:
          type: string
          enum:
            - usdc
          default: usdc
        wallet_address:
          type: string
          minLength: 1
        chain:
          type: string
          default: base
      required:
        - amount_usd
        - wallet_address
    PayoutResponse:
      type: object
      properties:
        payout_id:
          type: string
        amount_usd:
          type: number
        gas_fee_usd:
          type: number
        net_amount_usd:
          type: number
        to_address:
          type: string
        chain:
          type: string
        status:
          type: string
          enum:
            - PENDING_ONCHAIN
            - COMPLETED
            - FAILED
        tx_hash:
          type:
            - string
            - 'null'
        message:
          type: string
      required:
        - payout_id
        - amount_usd
        - gas_fee_usd
        - net_amount_usd
        - to_address
        - chain
        - status
        - tx_hash
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Clerk JWT for operator endpoints.

````