What’s inside
| Field group | Examples |
|---|---|
| Identity | chainId, address, name, symbol, decimals, logo |
| Market | priceUsd, priceChange24h, marketCap, fdv, volume24h |
| Supply | totalSupply, circulatingSupply, holderCount |
| Creation | createdAtBlock, creatorAddress, firstTxHash, launchpad |
| Security | isHoneypot, canBuy, canSell, taxBuy, taxSell, owner |
| Social | website, twitter, telegram, verifiedSources |
Coverage & freshness
Chains
Solana, Ethereum, BSC, Base, Polygon, Arbitrum, Optimism, Avalanche,
zkSync, Sui — plus anything in Supported Chains.
Freshness
Metadata: minutes after creation. Market data: seconds (near-real-time).
Creation events: block-level (sub-second on Solana, 1–12 s on EVM).
Access
REST — lookup & search
/v2/token/search, /v2/token/{chain}/{tokenAddress}, /v2/token/{chain}/metadata/multi, /v2/token/{chain}/{tokenAddress}/security.GraphQL
Join Tokens with Trades, Holders, Candles in one query.
WebSocket
dex-token-stats:{chain}_{tokenAddress} for live price/volume, dex-new-token:{chain} for new listings. SDK: client.stream.subscribeTokenStats / subscribeNewToken.Kafka
{chain}.tokens, {chain}.tokens.created topics per chain.SDK
client.token.search(), client.token.getToken(), client.token.getTokenSecurity() in TS / Py / Go / Rust.MCP / CLI
tokens_search, tokens_analyze MCP tools; chainstream token search / chainstream token info CLI.Common use cases
- Resolve a symbol like
PEPEto the right address on the chain the user actually meant - Render a token page with price, supply, security score and socials
- Detect new launches on a chain with a created-at filter
- Rank tokens by volume, market cap or holder growth
- Feed an LLM with a token “snapshot” for analysis
Billing
Each REST / GraphQL call consumes 1 read unit; security and full-meta endpoints may cost more. WebSocket and Kafka charge per message delivered. See Billing & units.Next
Trades
Every DEX swap for this token, with maker/taker and router labels.
Holders
Distribution, concentration and top-holder movements.
Candles (OHLC)
Multi-interval OHLC data for price charts.
Token research tutorial
End-to-end example using the Tokens product.

