Skip to main content
HyperCore Fills provides access to all trade execution data from Hyperliquid’s perpetual futures exchange.

Network Information

  • Dataset ID: hyperliquid-fills
  • Type: HyperCore
  • Status: Real-time
  • Base URL: https://portal.sqd.dev/datasets/hyperliquid-fills

Available Data

This dataset provides comprehensive fills data including:
  • Trade Fills: Complete execution data with price, size, side, and direction
  • Position Changes: Track position sizes and realized PnL on closing trades
  • Builder Routing: Monitor trades routed through specific builders with fee information
  • User Activity: Filter by user address to analyze trader behavior

Quick Start

Query fills for a specific asset:
curl --compressed -X POST 'https://portal.sqd.dev/datasets/hyperliquid-fills/stream' \
  -H 'Content-Type: application/json' \
  -d '{
    "type": "hyperliquidFills",
    "fromBlock": 900000000,
    "toBlock": 900000100,
    "fields": {
      "block": {
        "number": true,
        "timestamp": true
      },
      "fill": {
        "user": true,
        "coin": true,
        "px": true,
        "sz": true,
        "side": true,
        "dir": true,
        "fee": true
      }
    },
    "fills": [{
      "coin": ["BTC"]
    }]
  }'

Resources