Hyperliquid factors and forecasts, for your model.
Proprietary, model-ready factors and ML forecasts from the Hyperliquid DEX — a funding & volatility forecast and wallet-behaviour (toxicity) scores — built on clean, order-flow-enriched OHLCV, funding and positioning data. Stack the pieces into your own model. Parquet over a REST API, the whole universe, from October 2025.
No card required — the free tier is order-flow-enriched minute OHLCV plus a taste of the funding & volatility forecast, for BTC, ETH, SOL & HYPE.
curl https://tesseralytics.dev/v1/datasets \
-H "Authorization: Bearer $TESSERA_API_KEY"Browse the full data catalog →
AI native
Skip the download scripts. Our hosted Model Context Protocol server exposes every gold dataset to Claude — or any MCP client — as a set of tools, authed with the same API key. The model discovers the catalog, reads the data dictionary, and pulls the rows itself. Point your client at it in one command:
claude mcp add --transport http tessera https://tesseralytics.dev/mcp \
--header "Authorization: Bearer $TESSERA_API_KEY"Then just ask — "what's the latest funding-innovation forecast for BTC?" — and it reasons over the data. See setup and example prompts →
How it works
- Sign up with Google or your email — no card required.
- Create an API key in your account — it's shown once, so save it as
$TESSERA_API_KEY. - Install the Python SDK:
pip install "tessera-api[duckdb]" - Query straight into DuckDB SQL — one call spans as many coins and months as you like (
MonthSpanfetches, range-reads and unions the partitions for you):import tessera client = tessera.TesseraClient() # reads $TESSERA_API_KEY rel = client.to_duckdb( "gold_ohlcv_1m", ["BTC", "ETH"], tessera.MonthSpan("2026-03", "2026-05"), ) rel.query("ohlcv", """ SELECT coin, date_trunc('day', time) AS day, last(close ORDER BY time) AS close, sum(cvd) AS daily_cvd FROM ohlcv GROUP BY coin, day ORDER BY day """).show()
Prefer raw HTTP? Every partition is also a one-shot Parquet download over the REST API.
Pricing
Start free — including a taste of the funding & volatility forecast. Upgrade for every coin, the full forecast, and the wallet-toxicity factors.
Every plan is all-you-can-eat — unlimited downloads, no per-GB fees. Pull the whole history as often as you like.