Skip to main content
POST
/
v1
/
faucet
/
usdc
Get faucet usdc(testnet only)
curl --request POST \
  --url https://testnet-operator-evm.orderly.org/v1/faucet/usdc \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_address": "<string>",
  "broker_id": "<string>",
  "chain_id": "<string>"
}
'
{
  "success": true,
  "timestamp": 1702989203989
}

Body

application/json
user_address
string
required

Wallet address that will receive the test USDC. For Solana, provide a base58 address such as Zions51qQNUgWNyp4JegUFoMUpgFx43jBUsYmHtDPdr.

broker_id
string
required

Broker ID associated with the receiving account.

chain_id
string

Destination chain ID for EVM faucet deposits. Omit this field for Solana.

Response

200 - application/json

OK

success
boolean
required

Indicates whether the request was successful.

Example:

true

timestamp
integer

Server timestamp in milliseconds.

Example:

1702989203989