DLR Statistics

What is this endpoint for?

This endpoint provides access to historical statistics for Broadridge Distributed Ledger Repo (DLR) on the Canton Network. It includes the total number of active contracts, total quantity, and total funds in active DLR transactions for each day over a specified date range. The endpoint is a custom-made for a specific client and is not part of our standard packages. If you're interested in this capability and want to analyze DLR activity trends, or generate internal/external reports on the DLR market, please get in touch.

Endpoint

https://<eu|us>.market-api.kaiko.io/v2/data/dlr/statistics

Query parameters

Parameter
Required?
Description
Example

start_date

Start date for the data range in YYYYMMDD format.

20240101

end_date

End date for the data range in YYYYMMDD format. Defaults to current date if not provided.

20240131

sort

Sort order for results: asc (oldest first) or desc (most recent first). Default: asc

asc

page_size

Maximum number of records per page. Integer between 1 and 1000. Default: 1000.

100

continuation_token

Token for retrieving the next page of results (if paginating). Obtain from the previous response.

Fields

Field

Description

date

Date for the data point in YYYYMMDD format.

timestamp

Unix timestamp in milliseconds representing the start of the period.

contracts

Integer. Total number of contracts in active transactions on the given date.

quantity

Number. Total quantity in active transactions on the given date.

funds

Number. Total funds (cash) in active transactions on the given date.


Request examples

curl -H 'Accept: application/json' -H 'X-Api-Key: <client-api-key>' \
  'https://us.market-api.kaiko.io/v2/data/dlr/statistics?start_date=20250601&end_date=20250630&page_size=1000&sort=asc'

Response example

{
  "time": "2025-06-26T07:45:28.269608752Z",
  "timestamp": 1750923928,
  "data": [
    {
      "date": "20250601",
      "timestamp": 1704067200000,
      "contracts": 1250,
      "quantity": 100000000,
      "funds": 113000000
    },
    {
      "date": "20250602",
      "timestamp": 1704153600000,
      "contracts": 1270,
      "quantity": 102500000,
      "funds": 115000000
    }
    /* ... */
  ],
  "continuation_token": "mUNJbiuDHsQ3dtNu7FCP1e8ymWhSnGd7fTuKsJWrGzzw5dACxNpMQ6BwicaUqijfj1bB9GtdYKar4c6BUtkQ8CVunEtCtkwPuCNg8HdhvQXtBxEKy",
  "next_url": "https://us.market-api.kaiko.io/v2/data/dlr/statistics?continuation_token=mUNJbiuDHsQ3dtNu7FCP1e8ymWhSnGd7fTuKsJWrGzzw5dACxNpMQ6BwicaUqijfj1bB9GtdYKar4c6BUtkQ8CVunEtCtkwPuCNg8HdhvQXtBxEKy"
}

Last updated

Was this helpful?