Skip to main content
Track all trade executions for a specific trader address to analyze their trading activity, including entry and exit positions.

Use Case

Monitor individual trader activity to:
  • Track trading patterns and strategies
  • Analyze profit and loss over time
  • Monitor position sizing and risk management
  • Build trader performance analytics

Sample Response

{
  "header": {
    "number": 800000383,
    "timestamp": 1763423588545
  },
  "fills": [
    {
      "user": "0xd3d123f0f62559c62745ef0b631a21a95916b6b1",
      "coin": "STRK",
      "px": 0.19454,
      "sz": 229.7,
      "side": "B",
      "dir": "Open Long",
      "oid": 239170049656,
      "fee": 0.017605
    }
  ]
}

Field Descriptions

  • user - Trader wallet address (0x-prefixed hex, lowercase)
  • coin - Asset symbol being traded
  • px - Fill price as a decimal
  • sz - Fill size (quantity)
  • side - “A” (ask/sell) or “B” (bid/buy)
  • dir - Trade direction: “Open Long”, “Close Long”, “Open Short”, “Close Short”
  • fee - Fee charged for the fill
  • oid - Order ID that generated this fill