Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

Use this page when a guide uses a term you have not seen before. The API names stay exact, but the explanations here use plain language.

API Basics

TermPlain meaning
Data APISolana Tracker’s HTTP API for token prices, wallets, trades, holders, charts, and analytics.
RPCA direct way to ask a Solana node for blockchain data or to send transactions.
WebSocketA live connection that keeps sending updates after you subscribe.
WebSocket roomA named live feed, such as latest or price:{tokenAddress}, that you join to receive messages.
Cursor paginationA way to load large lists in pages. The response gives you a cursor; send it in the next request to get the next page.
API keyYour private key for using Solana Tracker APIs. Keep it secret.

Token And Trading Terms

TermPlain meaning
Token mintThe Solana address that identifies a token.
SPL tokenA standard Solana token. Most tokens on Solana use this format.
DEXA decentralized exchange where users swap tokens on-chain.
DEX aggregatorA tool that checks many exchanges and picks a route for a swap.
LiquidityMoney in a trading pool that lets people buy and sell.
Liquidity poolA pool of tokens used for trading. More liquidity usually means smoother trades.
LPShort for liquidity provider or liquidity position, depending on context.
SlippageThe price change you allow between quote time and trade time.
Smallest unitsBlockchain integer amounts without decimals. For example, lamports are the smallest unit of SOL.
Bonding curveA pricing path where the token price changes as people buy or sell before it moves to a normal pool.
GraduationWhen a token leaves its bonding curve and moves liquidity to a DEX pool.
Rug pullA risky token event where liquidity or safety disappears and buyers may not be able to sell safely.
SniperA wallet that buys very early after a token launches.
BundlerA wallet or service that groups transactions together, often during launch.
MEVProfit made by changing or using transaction order. In these docs it often means bot-like trading behavior.

Price And Chart Terms

TermPlain meaning
OHLCVOpen, high, low, close, and volume. These are the values used for candlestick charts.
OpenThe first price in a time window.
HighThe highest price in a time window.
LowThe lowest price in a time window.
CloseThe last price in a time window.
VolumeThe amount traded in a time window.
Market capToken price multiplied by supply, when supply data is available.

Wallet And PnL Terms

TermPlain meaning
PnLProfit and loss. It shows how much a wallet gained or lost.
Realized PnLProfit or loss from tokens already sold.
Unrealized PnLPaper profit or loss on tokens still held. It changes when price changes.
Total PnLRealized PnL plus unrealized PnL.
Cost basisWhat the wallet paid for a token position.
FIFOFirst in, first out. The oldest buys are matched to sells first when calculating PnL.
Open positionTokens the wallet still holds.
Equity curveA line chart of wallet value over time.
DrawdownA drop from a high point to a lower point.
Quote assetThe token used as the price side of a trade, such as SOL or a stablecoin.

Solana Infrastructure Terms

TermPlain meaning
SlotA short time window when Solana can produce a block.
BlockA group of transactions recorded by the network.
EntryA lower-level part of a block that helps show transaction order.
ShredA small piece of Solana block data sent across the network.
LeaderThe validator scheduled to produce a block for a slot.
CommitmentHow final a result is. Common levels are processed, confirmed, and finalized.
processedFastest, but the result can still change.
confirmedSlower, with stronger network agreement.
finalizedSlowest, with the strongest finality.
gRPCA fast streaming protocol used by Yellowstone for live Solana data.