# Broadridge 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. This dataset contains Broadridge's proprietary data and so requires their licensing approval to access. If you're interested in this data, [please get in touch](https://www.kaiko.com/broadridge-canton-request) and we'll process your access request in partnership with Broadridge.

### **Endpoint**

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

### **Query parameters**

<table><thead><tr><th>Parameter</th><th data-type="checkbox">Required?</th><th>Description</th><th>Example</th></tr></thead><tbody><tr><td><code>start_date</code></td><td>false</td><td>Start date for the data range in <code>YYYYMMDD</code> format. </td><td><code>20240101</code></td></tr><tr><td><code>end_date</code></td><td>false</td><td>End date for the data range in <code>YYYYMMDD</code> format. Defaults to current date if not provided. </td><td><code>20240131</code></td></tr><tr><td><code>sort</code></td><td>false</td><td>Sort order for results: <code>asc</code> (oldest first) or <code>desc</code> (most recent first). <br><br>Default: <code>asc</code></td><td><code>asc</code></td></tr><tr><td><code>page_size</code></td><td>false</td><td>Maximum number of records per page. Integer between 1 and 1000. <br><br>Default: <code>1000</code>.</td><td><code>100</code></td></tr><tr><td><code>continuation_token</code></td><td>false</td><td>Token for retrieving the next page of results (if paginating). Obtain from the previous response.</td><td>See <a href="https://docs.kaiko.com/rest-api/general/getting-started/pagination">Pagination</a></td></tr></tbody></table>

### **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**

{% tabs %}
{% tab title="cURL" %}
{% code overflow="wrap" %}

```url
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'
```

{% endcode %}
{% endtab %}

{% tab title="Python" %}

```python
import requests

url = "https://us.market-api.kaiko.io/v2/data/dlr/statistics"
headers = {"X-Api-Key": "<client-api-key>", "Accept": "application/json"}
params = {
    "start_date": "20250601",
    "end_date": "20250630",
    "sort": "asc"
}

response = requests.get(url, headers=headers, params=params)
print(response.json())
```

{% endtab %}
{% endtabs %}

### **Response example**

```json
{
  "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"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kaiko.com/rest-api/misc-custom-and-legacy-endpoints/broadridge-dlr-statistics.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
