Calico API
API Reference
getCalico.com
API Reference
getCalico.com
  1. Transactions
  • Overview
    • Use Cases
    • Getting started
    • Calico Connect
  • Platform API
    • Authentication
    • OAuth
      • Authorization Callback
    • Providers
      • Add providers
      • List providers
      • Remove providers
    • Assets
      • User assets
      • Refresh asset list
    • Transactions
      • Transactions
        GET
      • Refresh transactions
        POST
  • Resources
    • Response codes
    • FAQs
  • Schemas
    • Schemas
      • OpenAPIIntegrationResponse
      • CalicoErrorResponse
      • RefreshResponse
      • CryptoSourceId
      • OpenAPIAssetPosition
      • CryptoSourceCredentialAuthType
      • Add Crypto Source
      • Add Crypto Source Response
      • CryptoSourceDescriptor
      • OpenAPIDeleteCryptoSourceRequest
      • number
      • OpenAPIGetConsentURLForThirdPartyResponse
      • TransactionType
      • OpenAPITransactionCategorization
      • OpenAPIFeeItem
      • OpenAPIFeeObject
      • OpenAPICurrencyValue
      • Input only transactions
      • Transactions data
      • Send transaction data
      • Output only transaction data
      • Receive transaction data
      • Transactions with input and output
      • Uncategorized transaction data
API Reference
getCalico.com
API Reference
getCalico.com
  1. Transactions

Transactions

https://api.getcalico.com/platform/v1
https://api.getcalico.com/platform/v1
https://api.getcalico.com/platform/v1
https://api.getcalico.com/platform/v1
GET
/transactions
Get transactions from all or specific crypto sources.

Request

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

Responses

🟢200OK
application/json
Get transactions for a user.
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.getcalico.com/platform/v1/transactions?start_time={{$date.timestamp}}&end_time={{$date.timestamp}}&asset_symbols&crypto_sources&limit' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "crypto_source_transaction_id": "string",
        "timestamp": 0,
        "crypto_source_id": "coinbase",
        "transaction_type": "BUY",
        "categorization": {
            "protocol_name": "string",
            "contract_type": "STAKING",
            "network_name": "string"
        },
        "fee": {
            "itemized_receipt": [
                {
                    "source": "NETWORK",
                    "value": "string",
                    "currency": "string"
                }
            ]
        },
        "metadata": "string",
        "input": {
            "value": "string",
            "currency": "string",
            "asset_type": "NFT"
        }
    }
]
Previous
Transactions
Next
Refresh transactions
Built with