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

# Report USDC deposit

> Report an on-chain USDC deposit for credit. In production, requires 12 block confirmations.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/agents/deposit/usdc
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/agents/deposit/usdc:
    post:
      tags:
        - Agents
      summary: Report USDC deposit
      description: >-
        Report an on-chain USDC deposit for credit. In production, requires 12
        block confirmations.
      operationId: agentDepositUsdc
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DepositUsdcRequest'
      responses:
        '200':
          description: Deposit confirmed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DepositUsdcResponse'
        '409':
          description: Transaction already processed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKeyAuth: []
components:
  schemas:
    DepositUsdcRequest:
      type: object
      properties:
        tx_hash:
          type: string
          minLength: 1
        amount_usdc:
          type: number
          minimum: 5
          maximum: 10000
        chain:
          type: string
          default: base
      required:
        - tx_hash
        - amount_usdc
    DepositUsdcResponse:
      type: object
      properties:
        transaction_id:
          type: string
        chain:
          type: string
        tx_hash:
          type: string
        amount_usdc:
          type: number
        amount_credited:
          type: number
        status:
          type: string
        confirmations:
          type: number
        confirmations_required:
          type: number
        message:
          type: string
      required:
        - transaction_id
        - chain
        - tx_hash
        - amount_usdc
        - amount_credited
        - status
        - confirmations
        - confirmations_required
        - message
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'API key for agent and task endpoints. Format: ho_live_...'

````