Calico™
Enterprise API
Platform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
Enterprise API
Platform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
  1. Stats
  • Overview
  • Pagination
  • Enterprise API
    • Authentication
    • User details
      • User assets
      • User account
      • User transactions
      • 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
    • Enterprise providers
      GET
    • Calico providers
      GET
  • Schemas
    • User
    • TransactionsDiscriminator
    • GetAccountsListResponse
    • GetTransactionsListResponse
    • GetUsersListResponse
    • Consent model
    • ProviderMetadata
    • GetTransactionsResponse
    • OpenAPIGetAssetsResponse
    • ListProvidersResponse
    • OpenAPIDeleteCryptoSourceRequest
    • GetAssetsResponse
    • PageData
    • GetTransactionsData
    • ListProvidersData
    • GetAssetsData
    • TransactionCategorization
    • CalicoErrorResponse
    • Input only transactions
    • AssetPosition
    • OpenAPIAssetPosition
    • ErrorItem
    • Send transaction data
    • Output only transaction data
    • FeeItem
    • CryptoSourceId
    • Receive transaction data
    • FeeObject
    • ProviderId
    • Transactions with input and output
    • CurrencyValue
    • Uncategorized transaction data
    • Transactions data
    • Transactions data
    • 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
  1. Stats

Balance of all accounts

Developing
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
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or

Responses

🟢200Success
application/json
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠404Not found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/enterprise/v2/stats/balances' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "data": [
        {
            "active_balance": 0,
            "total_balance": 0
        }
    ]
}
Previous
Number of accounts by provider
Next
Top traded assets
Built with