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

# Get faucet usdc(testnet only)

> Testnet-only endpoint for requesting faucet USDC.

`POST https://testnet-operator-evm.orderly.org/v1/faucet/usdc`

`POST https://testnet-operator-sol.orderly.org/v1/faucet/usdc`

EVM testnet claims receive 1,000 USDC. Solana testnet claims receive 100 USDC.

Each account can claim from the faucet up to 5 times.

Use the EVM operator domain for EVM addresses and the Solana operator domain for Solana addresses. Do not use a mainnet domain.



## OpenAPI

````yaml orderly.openapi post /v1/faucet/usdc
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/faucet/usdc:
    post:
      tags:
        - public
      summary: Get faucet usdc(testnet only)
      description: >-
        Testnet-only endpoint for requesting faucet USDC.


        `POST https://testnet-operator-evm.orderly.org/v1/faucet/usdc`


        `POST https://testnet-operator-sol.orderly.org/v1/faucet/usdc`


        EVM testnet claims receive 1,000 USDC. Solana testnet claims receive 100
        USDC.


        Each account can claim from the faucet up to 5 times.


        Use the EVM operator domain for EVM addresses and the Solana operator
        domain for Solana addresses. Do not use a mainnet domain.
      requestBody:
        content:
          application/json:
            schema:
              required:
                - user_address
                - broker_id
              type: object
              properties:
                chain_id:
                  type: string
                  description: >-
                    Destination chain ID for EVM faucet deposits. Omit this
                    field for Solana.
                user_address:
                  type: string
                  description: >-
                    Wallet address that will receive the test USDC. For Solana,
                    provide a base58 address such as
                    `Zions51qQNUgWNyp4JegUFoMUpgFx43jBUsYmHtDPdr`.
                broker_id:
                  type: string
                  description: Broker ID associated with the receiving account.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
      deprecated: false
      servers:
        - url: https://testnet-operator-evm.orderly.org
        - url: https://testnet-operator-sol.orderly.org
components:
  schemas:
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````