Hyperliquid market data, for your model.
Order-flow-enriched minute OHLCV, funding rates and positioning — built from the raw Hyperliquid DEX tape, deduped and quality-checked end to end. Parquet over a REST API, every coin including HIP-3, full history from October 2025.
No card required — the free tier is order-flow-enriched minute OHLCV for BTC, ETH, SOL & HYPE over the trailing month.
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 rate 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 with the trailing month on the majors. Upgrade for full history, every coin (incl. HIP-3), and the funding & positioning datasets.
Every plan is all-you-can-eat — unlimited downloads, no per-GB fees. Pull the whole history as often as you like.