Back to Blog

Announcements

Trade.xyz Markets: 21 New HIP-3 Builder Perps

Trade.xyz Markets: 21 New HIP-3 Builder Perps

TradeXYZ HIP-3 Markets

TradeXYZ runs builder perps on Hyperliquid's HIP-3 framework: equities, commodities, FX, and a custom index, all trading 24/7. These are HIP-3 markets under Hyperliquid, not a separate venue, so 0xArchive keeps the namespace explicit and xyz:AAPL, xyz:GOLD, and xyz:XYZ100 stay prefixed across every route, SDK call, export, and record.

We archive TradeXYZ order books, trades, funding, open interest, and candles from February 26, 2026, the day these markets went live.

What is Trade.xyz?

Trade.xyz is a HIP-3 builder on Hyperliquid deploying perpetual futures for traditional assets. Its instruments span equities, commodities, currencies, and a custom index, with 24/7 trading under Hyperliquid's settlement model.

Markets Covered

Mega-Cap Equities

xyz:AAPL, xyz:AMZN, xyz:GOOGL, xyz:MSFT, xyz:NVDA, xyz:TSLA, xyz:TSM

High-Beta / Momentum

xyz:HOOD, xyz:INTC, xyz:MSTR, xyz:MU, xyz:PLTR, xyz:SKHX, xyz:SNDK

Commodities

xyz:GOLD, xyz:SILVER, xyz:CL (Crude Oil), xyz:COPPER

Forex & Other

xyz:EUR, xyz:CRCL (Circle), xyz:XYZ100 (XYZ U.S. 100 Index - top 100 non-financial U.S. equities, growth/tech-tilted)

Data Available

Coverage from February 26, 2026, for every listed xyz: market:

  • Order books - L2 depth and order-book history
  • Trades - fills with price, size, and side
  • Funding rates - rate snapshots with premium data, plus aggregated intervals (5m, 15m, 30m, 1h, 4h, 1d)
  • Open interest - OI with mark and oracle prices, plus aggregated intervals (5m, 15m, 30m, 1h, 4h, 1d)
  • Candles - OHLCV at 1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w intervals

Use HIP-3 REST routes, WebSocket replay, SDKs, CLI, MCP Server, Skill, OpenAPI, or Data Catalog exports. Preserve the xyz: prefix in every request and file manifest.

Why This Matters for Builders

21 markets across equities, commodities, and forex creates real analytical surface area:

  • Cross-asset correlation - How does xyz:NVDA funding diverge from xyz:GOLD during risk-off moves? Do commodities and equities decouple overnight?
  • Sector rotation signals - Track OI migration between xyz:TSLA, xyz:NVDA, and xyz:PLTR in real time. When momentum names see OI drop, where does it flow?
  • Funding arbitrage - Compare xyz funding rates against Kinetiq rates for overlapping markets (NVDA, GOOGL, GOLD, SILVER). Two builders, same underlying, different funding - that's an arb.
  • Macro event studies - FOMC, CPI, NFP - how do xyz:EUR, xyz:GOLD, and xyz:CL react vs equity perps? You now have sub-second order books plus full fill history to study it.
  • The XYZ100 Index - A custom index across all xyz markets. Track it against km:US500 for builder-level divergence analysis.

Run one route

curl "https://api.0xarchive.io/v1/hyperliquid/hip3/trades/xyz:TSLA?limit=100" \
-H "X-API-Key: $OXARCHIVE_API_KEY"

SDK sketch

from oxarchive import Client
client = Client(api_key="0xa_your_api_key")
# List all HIP-3 instruments.
instruments = client.hyperliquid.hip3.instruments.list()
for i in instruments:
print(f"{i.coin}: ${i.mark_price:,.2f} OI: {i.open_interest:,.0f}")
# xyz:TSLA 1-hour candles
candles = client.hyperliquid.hip3.candles.history(
"xyz:TSLA", interval="1h",
start="2026-02-26", end="2026-02-28"
)
# xyz:GOLD funding rate history (aggregated hourly)
funding = client.hyperliquid.hip3.funding.history(
"xyz:GOLD", interval="1h",
start="2026-02-26", end="2026-02-28"
)
# xyz:NVDA order book snapshot
orderbook = client.hyperliquid.hip3.orderbook.get("xyz:NVDA")

Links