> ## 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.

# Check payout status

> Check the status of a payout request.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/operator/payout/status/{id}
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/status/{id}:
    get:
      tags:
        - Operators
      summary: Check payout status
      description: Check the status of a payout request.
      operationId: operatorGetPayoutStatus
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Payout status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutStatusResponse'
        '404':
          description: Payout not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - bearerAuth: []
components:
  schemas:
    PayoutStatusResponse:
      type: object
      properties:
        payout_id:
          type: string
        status:
          type: string
          enum:
            - PENDING_ONCHAIN
            - COMPLETED
            - FAILED
        amount_usd:
          type: number
      required:
        - payout_id
        - status
        - amount_usd
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Clerk JWT for operator endpoints.

````