Get transfer details currently active on the exchange.
This API allows clients to interact with the TrueX trading platform for order management, market data retrieval, and account information.
Certain API requests must be authenticated using HMAC-SHA256 signature authentication.
curl -i -X GET \
'https://docs.truex.co/_mock/rest/v1/api/v1/transfer?asset_id=string&transfer_id=string' \
-H 'x-api-key: YOUR_API_KEY_HERE'
[ { "transfer_id": "1234576970", "request": { … } } ]
Transfer new context object.
Direction of the transfer.
The type of service to use for the transfer. Must match with the corresponding instructions defined below.
Platform specific instructions. The defined object must match with the platform value.
FIAT
CRYPTO
Platform specific instructions. The defined object must match with the platform value.
FIAT
CRYPTO
curl -i -X POST \
https://docs.truex.co/_mock/rest/v1/api/v1/transfer \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-truex-auth-signature: string' \
-H 'x-truex-auth-timestamp: string' \
-H 'x-truex-auth-token: string' \
-H 'x-truex-auth-userid: string' \
-d '{
"asset_id": "1234576970",
"client_id": "1234576970",
"amount": "1000000.00",
"type": "WITHDRAWL",
"platform": "CRYPTO",
"instructions": {
"fiat_account_id": "ed671d2b-bb9e-4cf5-9eb4-71b6db672207",
"identity_id": "b2a99c93-f1ee-41ed-9e9e-ec704cfbca4b",
"account_id": "b2a99c93-f1ee-41ed-9e9e-ec704cfbca4b",
"includes_fee": true
}
}'
{ "transfer_id": "1234576970", "request": { "asset_id": "1234576970", "client_id": "1234576970", "amount": "1000000.00", "type": "WITHDRAWL", "platform": "CRYPTO", "instructions": { … } } }