- 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 Wallet List
Testing
GET
/wallets
get_wallet_list
Last modified:2025-02-06 08:23:14
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 '/wallets' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array [object {2}]Â
required
wallets
array [object {9}]Â
optional
available_wallets
array [object {2}]Â
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"wallets": [
{
"id": 23,
"client_id": 79,
"wallet_type": "real",
"currency": "USD",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-11-07T07:05:20.582005",
"updated_time": null
},
{
"id": 24,
"client_id": 79,
"wallet_type": "real",
"currency": "BTC",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-11-07T07:13:15.609377",
"updated_time": null
},
{
"id": 25,
"client_id": 79,
"wallet_type": "real",
"currency": "ETH",
"balance": 0,
"cashier": null,
"counterparty_id": null,
"created_time": "2024-11-07T07:14:48.982415",
"updated_time": null
}
],
"available_wallets": [
{
"currency": "LTC",
"counterparty": "dsvg"
},
{
"currency": "USDC",
"counterparty": "dsvg"
}
]
}
],
"meta": {
"endpoint": "/wallets",
"method": "GET",
"timing": 1053
}
}
🟠401Unauthorised
Modified at 2025-02-06 08:23:14