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. Enterprise API
  • 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
      • Number of accounts by provider
      • Balance of all accounts
      • Top traded assets
    • 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. Enterprise API

Pagination

The Calico Enterprise API uses cursor-based pagination. An identifier string marks the starting point for each set (or page) of data.
To use pagination, you must include a limit with your request. Limit is a numerical value to indicate the number of items included in each page of results. If limit is not specified, the value defaults to 30. The maximum value is 100.
Responses will include a page object. If next_uri is empty, there is no further data. To retrieve the next page, include the URI encoded next_uri query parameter in the request.

Example 1st request#

curl --location --request GET 'https://api.getcalico.com/enterprise/v1/transactions?start_time=2025-11-22T23%3A45%3A50Z&end_time=2026-01-25T22%3A47%3A34Z&limit=50'

Example response#

{
    "page": {
        "next": "/transactions?start_time=2025-11-22T23%3A45%3A50Z&end_time=2026-01-25T22%3A47%3A34Z&limit=50&cursor=DLVsbG8sIFdv"
    },
    "data": [
        {
           ...
        }
    ]
}

Example next request#

curl --location --request GET 'https://api.getcalico.com/enterprise/v1/transactions?start_time=2025-11-22T23%3A45%3A50Z&end_time=2026-01-25T22%3A47%3A34Z&limit=50&cursor=DLVsbG8sIFdv
Previous
Overview
Next
Enterprise API
Built with