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

# Fund Wallet with MockUSDC

> Mint MockUSDC to your developer wallet and pre-fund the compute payment gate in one call.



## OpenAPI

````yaml POST /api/v1/faucet/usdc
openapi: 3.0.0
info:
  title: AgentChain & PRIOR API
  description: The centralized gateway for the decentralized compute network.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.agentchain.xyz
    description: Production
security: []
tags: []
paths:
  /api/v1/faucet/usdc:
    post:
      operationId: FaucetController_drip
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FaucetDripDto'
      responses:
        '200':
          description: ''
components:
  schemas:
    FaucetDripDto:
      type: object
      properties: {}

````