v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Solana wallet endpoints

Transfer Solana tokens to another wallet

Transfer Solana tokens to another wallet. Authentication with an API key is required.

post/user/{address}/wallet/solana/transfer

Path parameters

addressstring required

The address to initiate the transfer

Headers

Authorizationstring required

The JWT access token that authorizes the request

Request body

destinationWalletAddressstring

Destination wallet address

tokenAddressstring

(Optional) Contract address address of SPL token

tokenAmountnumber

Amount to send

waitForConfirmationboolean

Wait for on-chain confirmation after broadcasting the transaction

Example request

{
  "destinationWalletAddress": "The Base-58 encoded recipient address",
  "tokenAddress": "(Optional) Contract address address of SPL token",
  "tokenAmount": 1
}

Response

Transfer result

hashstring

Result of a transaction operation

confirmedboolean

Indicates whether the transaction is confirmed on-chain

Example response

[
  {
    "hash": "The Base-58 encoded transaction hash"
  }
]