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

Number of accounts by provider

Developing
GET
/enterprise/v2/stats/accounts
Returns the aggregate metrics for all accounts associated with users of your enterprise.
Active count represents the total number of activated accounts, total count represents deactivated and activated.

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/accounts' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "data": [
        {
            "provider_id": "string",
            "active_count": 0,
            "total_count": 0
        }
    ]
}
Previous
Number of enterprise users
Next
Balance of all accounts
Built with