Broadridge DLR Statistics
Last updated
Was this helpful?
Was this helpful?
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'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()){
"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"
}