Dashboard
Monitor account usage, review recent downloads, and keep an eye on access health.
Start here
Build a download script
Pick what you want. The Python below updates as you go, with your API key already in it.
Exchange
Symbols
Data type
Every executed trade, with taker side.
Date rangeUTC, inclusive of both ends
to
- Pick at least one symbol to generate a runnable snippet.
1
Install the SDK
pip install cryptohftdata2
Run this
Runs on the free tier without a keydownload_data.py
import cryptohftdata as chd
# Without a key this uses the free tier: 60 requests per minute per IP.
# chd.configure_client(api_key="...")
trades = chd.get_trades(
symbol="BTCUSDT",
exchange=chd.exchanges.BINANCE_FUTURES,
start_date="2026-08-18",
end_date="2026-08-18",
)
print(f"{len(trades):,} rows")
print(trades.head())Usage at a glance
Full usageAPI Requests
Data Downloaded
Account Status
Recent downloads
A preview of your Download History.