All examples below use
network: sol (Solana). Replace with eth, bsc, or polygon for other supported chains.How do I get the latest transfers?
Fetch the 10 most recent token transfers on Solana, including sender, receiver, amount, and USD value.Key fields
Key fields
| Field | Description |
|---|---|
Block.Time | Block timestamp (ISO 8601) |
Transaction.Hash | On-chain transaction hash |
Transfer.Currency.MintAddress | Token address being transferred |
Transfer.Sender.Address | Wallet that sent the tokens |
Transfer.Receiver.Address | Wallet that received the tokens |
Transfer.Amount | Number of tokens transferred |
Transfer.AmountInUSD | USD value of the transfer at the time it occurred |
Customization tips
Customization tips
- Filter by token: Add
tokenAddress: {is: "TOKEN_ADDRESS"}to see only transfers of a specific token - Large transfers only: Add
where: {Transfer: {AmountInUSD: {gt: 10000}}}to find whale movements - Time range: Add
where: {Block: {Time: {after: "2025-03-01T00:00:00Z"}}}to scope to a period
How do I get outgoing transfers from a wallet?
Get outgoing transfers from a specific wallet using thesenderAddress selector.
Key fields
Key fields
| Field | Description |
|---|---|
Transfer.Currency.MintAddress | Which token was sent |
Transfer.Receiver.Address | Who received the tokens |
Transfer.Amount | How many tokens were sent |
Transfer.AmountInUSD | USD value at the time of transfer |
Customization tips
Customization tips
- Specific token only: Add
tokenAddress: {is: "TOKEN_ADDRESS"}to narrow down to one token - Increase results: Change
count: 20to up to10000for deeper history - Add receiver filter: Use
where: {Transfer: {Receiver: {Address: {is: "RECEIVER_ADDRESS"}}}}to trace transfers between two specific wallets
How do I get incoming transfers to a wallet?
Find incoming transfers to a wallet using thereceiverAddress selector.
How do I get all transfers of a specific token?
Track all transfers of a specific token across the network.Customization tips
Customization tips
- Whale alerts: Add
where: {Transfer: {AmountInUSD: {gt: 100000}}}to only see large transfers (>$100K) - Exclude dust: Add
where: {Transfer: {Amount: {gt: 0.01}}}to filter out negligible amounts - Time-bounded: Combine with
where: {Block: {Time: {since: "2025-03-27T00:00:00Z"}}}for today’s transfers
Multi-Chain Examples
- Solana
- Ethereum
- BSC
- Polygon
Next Steps
DEX Trades
Query DEX trading data — token trades, wallet activity, and top traders.
Balances & Holders
Look up wallet balances, balance history, and top token holders.
Pools & Liquidity
Explore DEX pool and liquidity data.
OHLC & Statistics
Fetch candlestick data, trade stats, market cap, and token metadata.

