POST
/
v0
/
transfer
/
{token}
curl --request POST \
  --url https://solana-sbl.dial.to/api/v0/transfer/{token} \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "<any>",
  "account": "11111111111111111111111111111111"
}'
{
  "type": "<any>",
  "transaction": "<string>"
}

Path Parameters

token
string
required

Token to transfer. Can be human readable symbol or mint address

Examples:

"SOL"

"USDC"

"DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"

Query Parameters

to
string
required

The address to transfer the tokens to

Examples:

"11111111111111111111111111111111"

amount
number
required

The amount to transfer. Human readable value, e.g. 100 USDC

Required range: x >= 0

Body

application/json

Response

200 - application/json

OK

The response is of type object.