Developer Resources
Everything you need to integrate with CryptoHFTData. Explore our API endpoints, Python SDK, and historical data format.
LOADING DATA...
Everything you need to integrate with CryptoHFTData. Explore our API endpoints, Python SDK, and historical data format.
LOADING DATA...
The CryptoHFTData REST API provides direct access to our cryptocurrency market data without requiring the Python SDK. This is ideal for developers using other programming languages or those who prefer direct HTTP requests.
Base URL: https://api.cryptohftdata.com
Download Endpoint: GET /download
All data is organized in hourly chunks (using UTC time) and stored as compressed Parquet files. Each file contains data for a specific hour of a specific trading pair and data type.
{exchange}/{YYYY-MM-DD}/{HH}/{symbol}_{data_type}.parquet.zstorderbook L2 snapshotstrades Individual executionsticker 24h statisticsorderbook L2 snapshotstrades Individual executionsticker 24h statisticsmark_price Mark price updatesopen_interest Open interest dataliquidations Liquidation eventsAll data files are stored as Parquet format compressed with Zstandard (zstd) compression. Parquet provides efficient columnar storage with excellent compression ratios and fast query performance.
Downloaded files need to be decompressed (zstd) and then read as Parquet files. Most programming languages have libraries to handle both operations.