Skip to main content
POST
/
wallet
/
send-usdc
Send Specific Amount Usdc
curl --request POST \
  --url https://kryptonweb3-production.up.railway.app/wallet/send-usdc \
  --header 'Content-Type: application/json' \
  --data '
{
  "destination_address": "<string>",
  "amount": 123,
  "blockchain": "ETH-SEPOLIA",
  "wallet_username": "<string>",
  "funding_wallet_id": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Body

application/json

Request model for sending USDC to a destination address

destination_address
string
required

Destination wallet address

amount
number
required

Amount of USDC to send (must be positive)

blockchain
string
default:ETH-SEPOLIA

Blockchain network

wallet_username
string | null

Username to resolve funding wallet from Firebase

funding_wallet_id
string | null

Circle wallet ID to send from

Response

Successful Response