Event: asset_price_tick
Endpoint: wss://api.struct.to/ws/alerts
Cost: 0.1 credits per event
Get notified on every raw Chainlink price tick for tracked crypto assets. Optionally filter by asset symbol to receive only the ticks you need.
Related guide: Crypto Up/Down feed builds on these asset price ticks to chart the spot price behind Up/Down markets.
Filters
| Filter | Type | Required | Description |
|---|
asset_symbols | string[] | No | Supported symbols: BTC, ETH, SOL, XRP, DOGE, BNB, HYPE (max 500) |
Subscribe
{
"op": "subscribe",
"event": "asset_price_tick",
"asset_symbols": ["BTC", "ETH"]
}
Response
{
"event": "asset_price_tick",
"timestamp": 1775913505260,
"data": {
"symbol": "BTC",
"price": 84532.17,
"timestamp_ms": 1775913505100
}
}