Token Data

Real-time and historical Solana token data over REST. Covers metadata, single and batch audits (developer, top 10 holders, insiders, bundlers, snipers, lpBurn), live price and market data (price, marketCap, FDV, liquidity, totalSupply, holdersCount), all-time-high market cap, top holder rankings, search, recently graduated tokens, and trending tokens by transaction count over 1m / 5m / 30m / 1h windows. Historical endpoints return price, marketCap, or liquidity snapshots at fixed lookbacks (1d, 3d, 5d, 7d, 14d, 30d), low/high extremes within a custom time range, and percentage performance comparisons. Use them to build token discovery feeds, market-cap dashboards, charting widgets, due-diligence flows, and on-chain analytics.

Get Metadata for Token

get

Returns the metadata for a given token address stored in the database. Social fields are omitted.

Path parameters
tokenAddressstringRequired

The token's address (e.g., a Solana address)

Responses
chevron-right
200

Token metadata returned successfully

application/json
get
/tokens/{tokenAddress}/metadata

Get Real-Time Market Data for a Token

get

Returns real-time metrics for a Solana token: price, market capitalization, FDV, liquidity (USD), total supply, and current holder count. Aggregates across the token's pairs, picking the canonical price from the highest-liquidity WSOL/USDC/USDT pair so the value matches major DEX trackers. This endpoint returns a single live snapshot — it does not use time windows and does not include trade statistics.

Path parameters
tokenAddressstringRequired

The token's mint address (e.g., a Solana SPL token address)

Responses
chevron-right
200

Real-time market data returned successfully

application/json
get
/tokens/{tokenAddress}/market-data

Get Token Holders

get

Returns ranked holder wallets, amounts, and percentage ownership for a given token address.

Path parameters
tokenAddressstringRequired

The token's mint address (e.g., Solana token address)

Query parameters
limitinteger · max: 100Optional

Optional limit on number of holders returned (default: 25, max: 100)

Default: 25
Responses
chevron-right
200

List of holders returned successfully

application/json
get
/tokens/{tokenAddress}/holders
get

Returns a list of trending tokens ordered by transaction count for a given interval.

Query parameters
intervalstring · enumOptional

Time interval window for counting transactions (default: 5m)

Default: 5mExample: {"value":"5m"}Possible values:
Responses
chevron-right
200

List of trending tokens

application/json
addressstringOptional
symbolstringOptional
txnsintegerOptional
mcapnumberOptional
pricenumberOptional
holdersCountintegerOptional
get
/tokens/trending
get

Performs a flexible search for tokens by name, symbol, or address, with optional filters, sorting, and symbol-only mode.

Query parameters
searchQuerystringOptional

Query text to search in name, symbol, or address

limitinteger · min: 1 · max: 25Optional

Number of results to return (1–25)

Default: 10
sortBystring · enumOptional

Field to sort results by

Default: createdPossible values:
sortOrderstring · enumOptional

Sort order direction

Default: descPossible values:
Responses
chevron-right
200

List of matching tokens

application/json
get
/tokens/search

Get Latest Graduated Tokens

get

Fetches the most recently graduated tokens, ordered by graduation time (descending).

Query parameters
limitinteger · min: 1 · max: 100Optional

Number of results to return (1–100). Defaults to 25.

Default: 25
Responses
chevron-right
200

List of graduated tokens

application/json
get
/tokens/graduated

Get Token ATH

get

Returns the all-time-high (ATH) market cap and the timestamp when it occurred, based on all historical trades for the token.

Path parameters
tokenAddressstringRequired

The token's mint address (Solana SPL token).

Responses
chevron-right
200

ATH data returned successfully

application/json
get
/tokens/{tokenAddress}/ath

Get Historical Token Price

post

Fetches historical price, market cap, or liquidity snapshots for a token across multiple time windows.

Body
tokenstringRequired

The token's address

Responses
chevron-right
200

Historical data returned successfully

application/json
post
/tokens/{tokenAddress}/history

Get Token Performance

post

Returns percentage performance change for selected metrics over multiple time windows compared to the current value.

Body
tokenstringRequired

Token address to fetch performance data for

Responses
chevron-right
200

Performance data showing % change from current value across time windows.

application/json
post
/tokens/{tokenAddress}/performance

Get Token Price

get

Returns the latest price, market cap, and liquidity for a specific token address.

Path parameters
tokenAddressstringRequired

The token's contract address

Responses
chevron-right
200

Token pricing information

application/json
get
/tokens/{tokenAddress}/price

Get Token History Range

post

Returns the lowest and highest values of selected metrics (price, market cap, liquidity) within a specified time range for a token.

Path parameters
tokenAddressstringRequired

The token's contract address

Body
time_fromnumberRequired

Unix timestamp (seconds) for range start

time_tonumberRequired

Unix timestamp (seconds) for range end

modestring · enumOptional

Behavior when requested range falls outside token lifespan

Default: clampPossible values:
Responses
chevron-right
200

Range results for the token

application/json
tokenstringOptional
clampedbooleanOptional
warningstringOptional
mcapobjectOptional
liquidityobjectOptional
post
/tokens/{tokenAddress}/history/range

Get Token Audit

get

Returns supply distribution audit data for a Solana token: developer holdings, top 10 holders, insiders, bundlers, snipers, and LP burn percentages plus matching token amounts. Useful for due-diligence dashboards and red-flag scoring.

Note: lpBurn is currently always reported as zero. Burn-address detection is not yet enabled against the current data schema; the field is preserved for response shape compatibility and will be populated in a future release.

Path parameters
tokenAddressstringRequired

The token's address (e.g., a Solana mint address)

Responses
chevron-right
200

Token audit data returned successfully

application/json
get
/tokens/{tokenAddress}/audit
200

Token audit data returned successfully

Get Token Audit (Multiple)

get

Returns audit data for up to 10 Solana tokens in a single batch call via a comma-separated addresses query parameter. Each entry includes developer, top 10 holders, insiders, bundlers, snipers, and lpBurn distributions plus matching token amounts.

Note: lpBurn is currently always reported as zero. Burn-address detection is not yet enabled against the current data schema; the field is preserved for response shape compatibility and will be populated in a future release.

Cost: 10 credits per request.

Query parameters
addressesstringRequired

Comma-separated list of up to 10 token mint addresses

Example: address1,address2
Responses
chevron-right
200

Batch token audit data returned successfully

application/json
get
/tokens/audit

Last updated