Skip to main content
POST
/
api
/
v1
/
send_usdc
Send USDC to another user
curl --request POST \
  --url https://api.kryptonfund.com/api/v1/send_usdc \
  --header 'Content-Type: application/json' \
  --data '
{
  "sender_user_id": "123e4567-e89b-12d3-a456-426614174000",
  "receiver_username": "bob",
  "amount": 10.5
}
'
{}

Body

application/json
sender_user_id
string
required

Sender's user ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

receiver_username
string
required

Receiver's username

Example:

"bob"

amount
number
required

Amount of USDC to send

Example:

10.5

Response

Transaction result and details

The response is of type Response Send Usdc Api V1 Send Usdc Post · object.