AML
Country Data
Crypto
- Private
- Public
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
Dashboard
Get Total Balance Aggregate
POST
/
dashboard
/
total-balance
/
aggregates
Copy
curl --request POST \
--url https://gateway.varchev.com/wallet/dashboard/total-balance/aggregates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"walletId": "<string>",
"overview": [
"<string>"
],
"inTermsOf": "EUR"
}'
Copy
{
"totalBalance": 123,
"twentyFourHourPercentage": 123,
"twentyFourHourChange": 123,
"totalBalanceByAssets": {
"labels": [
"<string>"
],
"data": [
"<string>"
]
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Tenant Id
Body
application/json
Response
200 - application/json
Get Total Balance Aggregate
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.varchev.com/wallet/dashboard/total-balance/aggregates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"walletId": "<string>",
"overview": [
"<string>"
],
"inTermsOf": "EUR"
}'
Copy
{
"totalBalance": 123,
"twentyFourHourPercentage": 123,
"twentyFourHourChange": 123,
"totalBalanceByAssets": {
"labels": [
"<string>"
],
"data": [
"<string>"
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.