Public trade feed
Real-time trade feed for an instrument.
WSS
trades.
{instrument_id}
Messages
{
"trade_id": 123,
"instrument_id": "<string>",
"price": 123,
"size": 123,
"taker_wallet": "<string>",
"maker_wallet": "<string>",
"taker_side": "<string>",
"timestamp": 123
}instrument_id
type:string
required
Instrument identifier.
Public trade notification
type:object
Public fill broadcast on trades.<instrument>. Includes both wallets
(Solana base58 addresses), but deliberately omits the maker/taker
order IDs that are present on the private user.trades payload — see
UserTradeNotification — to avoid exposing maker placement and
cancellation patterns to anonymous subscribers.
⌘I
Messages
{
"trade_id": 123,
"instrument_id": "<string>",
"price": 123,
"size": 123,
"taker_wallet": "<string>",
"maker_wallet": "<string>",
"taker_side": "<string>",
"timestamp": 123
}