Skip to content

Get the combined balance across all accounts.

GET
/api/dashboard/totals
curl --request GET \
--url https://api.tradr.cloud/api/dashboard/totals

Authed. Sums every account balance into the user’s display currency. missingPairs is present only when at least one account could not be converted for want of a rate — its absence is the “total is complete” signal, so check for the key rather than an empty array. When it is present the total covers only the accounts that could be converted.

The combined total.

Media typeapplication/json
object
displayCurrency
string
nullable
missingPairs

Omitted entirely when every account converted.

Array<object>
object
total
string
nullable
Examplegenerated
{
"displayCurrency": "example",
"missingPairs": [
{}
],
"total": "example"
}