Polaris is a market data platform for emerging frontier markets, built for quantitative research, backtesting, and modelling.
We capture exchange-native data directly from venues such as Hyperliquid and Lighter, exposing normalized datasets alongside raw venue payloads.
Install the CLI:
curl -fsSL https://polaris.supply/install.sh | bashBrowse and download available datasets via TUI:
polarisQuery the last 7 days of events with the Python SDK:
from polaris_data import PolarisClient
with PolarisClient() as client:
rows = client.events(exchange="hyperliquid", asset="BTC")
print(len(rows))See the docs to get an API key, learn how to authenticate, and use the SDKs, or read llms.txt for the compact LLM-facing version.