Skip to main content
Event: market_volume_milestone
Endpoint: wss://api.struct.to/ws/alerts
Cost: 0.2 credits per event
Get notified when a market’s trading volume crosses a USD milestone. You must specify at least one timeframe to subscribe.

Filters

FilterTypeRequiredDescription
timeframesstring[]YesTimeframe windows: 1m, 5m, 15m, 30m, 1h, 4h, 6h, 1d, 24h, 7d, 30d (max 500)
condition_idsstring[]NoRestrict to specific conditions (max 500)
milestone_amountsinteger[]NoUSD milestone amounts to watch (max 500)

Subscribe

{
  "op": "subscribe",
  "event": "market_volume_milestone",
  "timeframes": ["1h", "24h"],
  "milestone_amounts": [10000, 50000, 100000]
}

Response

{
  "event": "market_volume_milestone",
  "timestamp": 1775913505260,
  "data": {
    "condition_id": "0x1234567890abcdef",
    "timeframe": "24h",
    "milestone_usd": 50000,
    "current_volume_usd": 51230.80,
    "fees": 512.30,
    "txns": 134
  }
}
Last modified on April 13, 2026