Execute Crypto Transfer
POST
/api/v1/transfer/crypto/execute
const url = 'https://api.parasta.io/api/v1/transfer/crypto/execute';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"to_address":"0x1234...abcd","network":"POLYGON","token":"USDT","amount":"100.0","pin":"[encrypted]"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” 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]"}Responses
Section titled “ Responses ”OK
Media type application/json
Example
{ "status": "ok", "data": { "tx_hash": "0xabc123...def456", "status": "confirmed", "fee": "0.3 USDT" }}