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. Report Generation
  • Overview
  • Enterprise API
    • Authentication
    • 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
      • Number of accounts by provider
      • Balance of all accounts
      • Top traded assets
    • Report Generation
      • Create Report
        POST
      • List Reports
        GET
      • Get Report
        GET
      • Download Link
        GET
      • Delete Report
        DELETE
    • 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. Report Generation

List Reports

Calico Enterprise API
https://api.getcalico.com
Calico Enterprise API
https://api.getcalico.com
GET
/enterprise/v2/reports
List all reports, including generated or in process reports.

Request

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

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/reports?order=undefined&page_num=0&limit=undefined' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "data": {
        "reports": [
            {
                "name": "My Report May 18th, 2026",
                "id": "43e5dab2-2588-439b-83e9-e379c2117fbd",
                "metadata": {
                    "report_type": "TRANSACTION_REPORT",
                    "report_start_date": "2019-08-24T14:15:22.123Z",
                    "report_end_date": "2019-08-24T14:15:22.123Z",
                    "asset_symbols": "string",
                    "provider_ids": "string",
                    "employee_name": "string"
                },
                "created_at": "2019-08-24T14:15:22.123Z",
                "completed_at": "2019-08-24T14:15:22.123Z",
                "format": "CSV",
                "length_in_bytes": 0,
                "status": "COMPLETED"
            }
        ]
    },
    "page": {
        "page_num": 0,
        "max_page_num": 0,
        "next_uri": "/enterprise/v1/reports?page_num=1"
    },
    "errors": []
}
Previous
Create Report
Next
Get Report