Calico®
Enterprise APIPlatform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
Enterprise APIPlatform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
  1. Stats
  • Overview
  • Enterprise API
    • Authentication
    • Changelog
    • User details
      • User assets
      • User transactions
      • User accounts
      • Deactivate account
    • All users
      • Accounts list
      • Transactions list
      • Users list
      • Search users
    • Stats
      • Number of enterprise users
        GET
      • Number of accounts by provider
        GET
      • Balance of all accounts
        GET
      • Top traded assets
        GET
    • Report Generation
      • Create Report
      • List Reports
      • Get Report
      • Download Link
      • Delete Report
    • Enterprise providers
      GET
    • Calico providers
      GET
  • Schemas
    • User
    • GetAccountsListResponse
    • GetTransactionsListResponse
    • GetUsersListResponse
    • Consent model
    • ErrorEmpty
    • OpenAPIGetAssetsResponse
    • ErrorItem
    • AssetPosition
    • Transactions data
    • ListProvidersData
    • ProviderMetadata
    • ReportData
    • ListReportsData
    • TransactionReportParameters
    • AccountsReportParameters
    • IndividualReportParameters
    • GetReportData
    • ReportRequestData
    • SummaryReportParameters
    • EmployeeListReportParameters
    • ReportType
    • ReportLinkData
    • OpenAPIDeleteCryptoSourceRequest
    • GetAssetsResponse
    • ListProvidersResponse
    • GetTransactionsResponse
    • PageData
    • GetAssetsData
    • GetTransactionsData
    • CalicoErrorResponse
    • TransactionCategorization
    • OpenAPIAssetPosition
    • CryptoSourceId
    • FeeItem
    • ProviderId
    • FeeObject
    • CurrencyValue
    • Input only transactions
    • TransactionType
    • Send transaction data
    • OpenAPITransactionCategorization
    • Receive transaction data
    • OpenAPIFeeObject
    • Output only transaction data
    • OpenAPIFeeItem
    • Transactions with input and output
    • Uncategorized transaction data
    • OpenAPICurrencyValue
    • ReportFormat
    • NumericPageData
    • UserData
    • accountData
    • bulkAccountData
    • ProviderCryptoMetaData
    • EmployeePageData
    • TransactionsListData
  1. Stats

Balance of all accounts

Calico Enterprise API
https://api.getcalico.com
Calico Enterprise API
https://api.getcalico.com
GET
/enterprise/v2/stats/balances
List the balances of all accounts associated with your enterprise. Active balance represents balance of non-deactivated accounts, total balance represents the total balance of all accounts associated with the client.
Note: Pricing does not need to be updated to reflect market pricing, using the pricing stored in the asset entries in the DB is sufficient.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200Success
application/json
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠404Not found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.getcalico.com/enterprise/v2/stats/balances' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "data": {
        "active_balance_in_usd": "143279702280.06445323",
        "total_balance_in_usd": "143279732050.18350649",
        "balances": [
            {
                "provider_id": "ethereum",
                "active_user_balance_in_usd": "143272594625.58055606",
                "total_user_balance_in_usd": "143272594650.77657122"
            },
            {
                "provider_id": "bitcoin",
                "active_user_balance_in_usd": "7074124.145817889312",
                "total_user_balance_in_usd": "7074124.145817889312"
            },
            {
                "provider_id": "coinbase",
                "active_user_balance_in_usd": "33490.020806929803206",
                "total_user_balance_in_usd": "63198.618221371215736"
            },
            {
                "provider_id": "binance-us",
                "active_user_balance_in_usd": "17.240211589754277086",
                "total_user_balance_in_usd": "39.759938682689446863"
            },
            {
                "provider_id": "gemini",
                "active_user_balance_in_usd": "18.553181154999922726",
                "total_user_balance_in_usd": "32.359077730484958787"
            },
            {
                "provider_id": "kraken",
                "active_user_balance_in_usd": "4.5238795917275723104",
                "total_user_balance_in_usd": "4.5238795917275723104"
            }
        ]
    },
    "errors": []
}
Previous
Number of accounts by provider
Next
Top traded assets