Transfer
Testing
POST
/payment/transfer
transfer
Last modified:2025-03-07 02:58:31
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-core.deriv.com/v1/payment/transfer' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"from": {
"type": "wallet",
"id": 134
},
"to": {
"id": 78,
"type": "account"
},
"from_amount": 99.99
}'
Response Response Example
200 - Success
{
"data": [
{
"amount": -0.009,
"client_id": 278,
"type": "wallet_wallet",
"category": "transfer",
"cashier": "crypto",
"account": null,
"staff_identifier": null,
"remark": null,
"payment_time": "2024-12-11T06:20:43.474Z",
"fee": 0.00018,
"wallet_id": 257,
"status": "completed",
"account_id": null,
"metadata": {
"tracking_id": "1ad****************************f9b",
"transaction_id": "0a9****************************040e9",
"metadata": {
"to": {
"id": 256,
"type": "wallet",
"currency": "LTC",
"amount": 0.00008001,
"net_amount": 0.00008001
},
"from": {
"type": "wallet",
"id": 257,
"currency": "TCN",
"amount": 0.009,
"net_amount": 0.00882,
"amount_in_usd": 0.009
},
"transfer": {
"transfer_fee": {
"amount": 0.00018,
"currency": "TCN",
"percentage": 2
},
"exchange_rate": 0.00907194
}
}
}
}
],
"meta": {
"endpoint": "/payment/transfer",
"method": "POST",
"timing": 9260
}
}
Request
Header Params
Authorization
string
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
string
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
Responses
Modified at 2025-03-07 02:58:31