> For the complete documentation index, see [llms.txt](https://docs.kaiko.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kaiko.com/rest-api/misc-custom-and-legacy-endpoints/broadridge-dlr-statistics.md).

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

<table data-header-hidden><thead><tr><th width="151.9609375"></th><th></th></tr></thead><tbody><tr><td><strong>Field</strong></td><td><strong>Description</strong></td></tr><tr><td><code>date</code></td><td>Date for the data point in <code>YYYYMMDD</code> format.</td></tr><tr><td><code>timestamp</code></td><td>Unix timestamp in milliseconds representing the start of the period.</td></tr><tr><td><code>contracts</code></td><td>Integer. Count of individual repurchase agreement transactions settled on a given day. Includes both new trades and rolls. One trade = one counterparty pair agreeing to exchange securities for cash with a repurchase obligation.</td></tr><tr><td><code>quantity</code></td><td>Number. Aggregate face value of all securities used as collateral in repo transactions on a given day. For a Treasury repo, this is the par amount of Treasuries delivered, not their market value or the cash borrowed.</td></tr><tr><td><code>funds</code></td><td>Number. Total Aggregate cash volume exchanged in repo transactions on a given day. The sum of all cash lent or borrowed. For overnight repos, this equals the principal amount; for term repos, the initial cash leg.</td></tr></tbody></table>

***

### **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": 1748736000000,
      "contracts": 1250,
      "quantity": 100000000,
      "funds": 113000000
    },
    {
      "date": "20250602",
      "timestamp": 1748822400000,
      "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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
