For the complete documentation index, see llms.txt. This page is also available as Markdown.

Token Transactions

Live buys and sells from tracked smart money, KOL and whale wallets across Solana, BNB Chain and Base. One stream; pick the chain and wallet type with the blockchain and type fields.

Token Transactions — Live Smart Money / KOL / Whale Trades (WebSocket)

get

Subscribe to the live transactions stream and receive a position_update message for every matching trade. Select the data with the subscribe fields:

  • blockchain (required) — solana, bnb, base. Change this to switch chain.

  • type (required) — kol, smart, whale (whale is Solana-only)

  • token (optional, default *) — a mint/contract to follow one token, or * for all

Subscribe message: { "op": "subscribe", "stream": "tx", "blockchain": "solana", "type": "kol", "token": "*" }. Each subscription corresponds to the channel tx.<blockchain>.<type>, returned in the channel field of every message.

Authorizations
AuthorizationstringRequired

Authorization: Bearer YOUR_KEY

Body

Client → server. Start receiving the transactions stream for a chain + wallet type.

opstring · enumRequiredExample: subscribePossible values:
streamstring · enumOptionalExample: txPossible values:
blockchainstring · enumOptional

Change this to switch chain.

Example: solanaPossible values:
typestring · enumOptional

whale is Solana-only.

Example: kolPossible values:
tokenstringOptional

A mint/contract, or "*" for all tokens.

Example: *
channelstringOptional

Compact alternative to the fields above, e.g. tx.solana.kol.*

Example: tx.solana.kol.*
Responses
200

A position_update message pushed for each matching trade on the subscribed channel.

application/json

One trade (buy or sell) as a full position update.

successbooleanOptionalExample: true
channelstringOptional

Channel that produced this message — tx...

Example: tx.solana.kol
eventstring · enumOptionalExample: position_updatePossible values:
get/tx
200

A position_update message pushed for each matching trade on the subscribed channel.

Last updated