Skip to content

Execute Crypto Transfer

POST
/api/v1/transfer/crypto/execute
curl --request POST \
--url https://api.parasta.io/api/v1/transfer/crypto/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "to_address": "0x1234...abcd", "network": "POLYGON", "token": "USDT", "amount": "100.0", "pin": "[encrypted]" }'

Transfer cryptocurrency to an external wallet address.

Media type application/json
object
to_address
required

Destination wallet address

string
network
required

POLYGON | ETHEREUM | SOLANA

string
token
required

Token symbol (USDT, ETH, etc.)

string
amount
required

Transfer amount

string
Example
{
"to_address": "0x1234...abcd",
"network": "POLYGON",
"token": "USDT",
"amount": "100.0",
"pin": "[encrypted]"
}

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"tx_hash": "0xabc123...def456",
"status": "confirmed",
"fee": "0.3 USDT"
}
}