- Deriv Core
- Auth
- Config
- Client
- Get Client System StatusGET
- Get Onboarding StatusGET
- Create TNCPOST
- Get Client Financial AssessmentGET
- Update Financial AssessmentPUT
- Get Client Tax InformationGET
- Create Client Tax InformationPOST
- Update Client Tax InformationPUT
- Create Client ProfilePOST
- Get Client ProfileGET
- Create Client AddressPOST
- Get Client AccountsGET
- Update ProfilePUT
- Get AddressGET
- Get Total BalanceGET
- Create Financial AssessmentPOST
- Get Client StatusGET
- Get Login HistoryGET
- Update Client AddressPUT
- Upload Client ProfilePOST
- Wallet
- KYC
- Payment
- Fiat Payment
- Platform
- Auth
- Brand
Get Total Balance
Testing
GET
/client/total-balance
get_total_balance
Last modified:2025-02-06 08:23:16
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/client/total-balance' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200OK
application/json
Body
data
array [object {3}]Â
required
total_balance
objectÂ
optional
wallets
array [object {9}]Â
optional
accounts
array[string]
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"total_balance": {
"amount": "1.88",
"currency": "USD"
},
"wallets": [
{
"id": 252,
"client_id": 278,
"wallet_type": "real",
"currency": "USD",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-12-11T03:30:26.877325",
"updated_time": null
},
{
"id": 253,
"client_id": 278,
"wallet_type": "real",
"currency": "ETH",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-12-11T03:30:28.836773",
"updated_time": null
},
{
"id": 254,
"client_id": 278,
"wallet_type": "real",
"currency": "BTC",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-12-11T03:30:29.180663",
"updated_time": null
},
{
"id": 255,
"client_id": 278,
"wallet_type": "real",
"currency": "USDC",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-12-11T03:30:29.514228",
"updated_time": null
},
{
"id": 256,
"client_id": 278,
"wallet_type": "real",
"currency": "LTC",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-12-11T03:30:29.916922",
"updated_time": null
},
{
"id": 257,
"client_id": 278,
"wallet_type": "real",
"currency": "TCN",
"balance": 1.877,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-12-11T03:30:30.254056",
"updated_time": "2024-12-11T03:56:12.451585"
}
],
"accounts": []
}
],
"meta": {
"endpoint": "/client/total-balance",
"method": "GET",
"timing": 1355
}
}
🟠401Unauthorized
Modified at 2025-02-06 08:23:16