TradFi Meets DeFi Infrastructure
Equities, indices, and commodities now trade as perpetual futures 24/7 on Hyperliquid - powered by Kinetiq Markets via HIP-3.
0xArchive now has historical data coverage for every Kinetiq market, with data starting February 18, 2026.
What are Kinetiq Markets?
Kinetiq Markets uses Hyperliquid's HIP-3 framework to deploy builder perps - perpetual futures contracts for assets that don't exist natively on-chain. Think US500, NVIDIA, and gold - trading around the clock with no market close, no circuit breakers, and fully on-chain settlement.
This is TradFi meeting DeFi infrastructure. Indices, single-name equities, commodities, and bonds - all as perps on the fastest on-chain orderbook.
Markets Covered
Indices: km:US500, km:USTECH, km:SMALL2000
Equities: km:NVDA (NVIDIA), km:GOOGL (Alphabet), km:BABA (Alibaba)
Commodities & Fixed Income: km:GOLD, km:SILVER, km:USBOND (20yr+ U.S. Treasury Bonds)
Data Available
Every data type, for every market:
All accessible via REST API, Python SDK, and TypeScript SDK.
What Can You Build?
We put together an open-source example - an HIP-3 Asset Dashboard - that pulls funding, OI, and trade data for any Kinetiq market and generates:
All in ~200 lines of Python using our SDK. Some ideas for what else you could build:
Quick Start
from oxarchive import Client
client = Client(api_key="0xa_your_api_key")
# List all available HIP-3 instrumentsinstruments = client.hyperliquid.hip3.instruments.list()for i in instruments: print(f"{i.coin}: mark=${i.mark_price}, oi={i.open_interest}")
# Fetch km:NVDA funding rate historyfunding = client.hyperliquid.hip3.funding.history( "km:NVDA", start="2026-02-18", end="2026-02-19")
# Fetch km:US500 tradestrades = client.hyperliquid.hip3.trades.list( "km:US500", start="2026-02-18", end="2026-02-19")