Overview
The Token Security endpoint provides detailed security and restriction data for tokens on EVM and Solana chains. It analyzes the token contract to identify potential red flags, holding distributions, fee structures, transfer limitations, and minting/freezing capabilities that may affect trading.GET Method - Single Item Query
Retrieve security information for a single token.Query Parameters
blockchain(required) — The blockchain identifier (e.g.,evm:1,evm:56,solana:solana,ethereum,bsc)address(required) — Token contract address
Usage Examples
Response Format
Response Fields
Core Fields
address(string) — Token contract address (checksummed for EVM)chainId(string) — Blockchain chain ID (e.g.,evm:1,solana:solana)
Holdings Analysis
-
contractHoldingsPercentage(number | null) — Percentage of total supply held by the contract itself. High values (>10%) may indicate centralization risks or potential honeypot mechanisms. EVM only. -
contractBalanceRaw(string | null) — Raw balance of tokens held by the contract address (in smallest unit). EVM only. -
burnedHoldingsPercentage(number | null) — Percentage of total supply sent to dead/burn addresses. Higher values generally indicate deflationary tokenomics. EVM only. -
totalBurnedBalanceRaw(string | null) — Raw total balance of tokens sent to burn addresses (in smallest unit). EVM only.
Holder Distribution
-
top10HoldingsPercentage(number | null) — Percentage of total supply held by the top 10 holders (excluding liquidity pools). High concentration may indicate whale risk. -
top50HoldingsPercentage(number | null) — Percentage of total supply held by the top 50 holders (excluding liquidity pools). -
top100HoldingsPercentage(number | null) — Percentage of total supply held by the top 100 holders (excluding liquidity pools). -
top200HoldingsPercentage(number | null) — Percentage of total supply held by the top 200 holders (excluding liquidity pools).
Fee Structure
-
buyFeePercentage(number) — Fee percentage charged on buy transactions (0-100 scale). Extracted from the token contract’s security configuration. -
sellFeePercentage(number) — Fee percentage charged on sell transactions (0-100 scale). Extracted from the token contract’s security configuration.
Transfer Restrictions (EVM Only)
These fields attempt to query various common function names used by contracts to restrict transfers:-
maxWalletAmountRaw(string | null) — Maximum token balance an address can hold (in wei/smallest unit). Null if no restriction exists.- Common function names checked:
_maxWalletToken,maxWalletToken,maxWallet,_maxWalletBalance,maxWalletAmount,_maxWalletSize,MaxWalletSize,_walletMax,maxWalletSize
- Common function names checked:
-
maxSellAmountRaw(string | null) — Maximum amount that can be sold in a single transaction (in wei/smallest unit). Null if no restriction exists.- Common function names checked:
maxSellTransactionAmount,maxSellAmount
- Common function names checked:
-
maxBuyAmountRaw(string | null) — Maximum amount that can be bought in a single transaction (in wei/smallest unit). Null if no restriction exists.- Common function names checked:
maxBuyTransactionAmount,maxBuyAmount,maxBuy
- Common function names checked:
-
maxTransferAmountRaw(string | null) — Maximum transaction amount regardless of buy/sell direction (in wei/smallest unit). Null if no restriction exists.- Common function names checked:
_maxTransactionAmount,_maxTxAmount,maxTransactionAmount,MaxTxAmount,maxTransferAmount,maxTrxnAmount
- Common function names checked:
Token Capabilities
-
isMintable(boolean | null) — Whether the token can have additional supply minted.- Solana: Determined via RPC by checking if
mintAuthorityis set on the mint account - EVM: Determined from security metadata if available
- Solana: Determined via RPC by checking if
-
isFreezable(boolean | null) — Whether token accounts can be frozen by an authority.- Solana: Determined via RPC by checking if
freezeAuthorityis set on the mint account - EVM: Returns
null(not applicable)
- Solana: Determined via RPC by checking if
Market Analysis
-
isLaunchpadToken(boolean | null) — Whether the token comes from (or is still on) a bonding curve/launchpad (e.g., Pump.fun, Moonshot, Raydium Launchlab, Boop, Meteora DBC, Heaven).trueindicates the token originated from a bonding curve mechanism, regardless of whether it has since graduated to a regular DEX pool. -
proTraderVolume24hPercentage(number | null) — Estimated percentage of 24h trading volume coming through terminal UIs (Axiom, Phantom, BullX, etc.). Calculated as(feesPaid24h / volume24h) * 100 * 50. Volume that doesn’t pass through these UIs is generally non-organic (bots, direct contract calls). Higher values indicate more legitimate retail/terminal activity.
Chain Support
| Feature | EVM Chains | Solana |
|---|---|---|
| Contract Holdings | ✅ | ❌ |
| Burned Holdings | ✅ | ❌ |
| Buy/Sell Fees | ✅ | ✅ |
| Max Wallet/Buy/Sell/Transfer | ✅ | ❌ |
| Top X Holdings | ✅ | ✅ |
| isMintable | ✅ (metadata) | ✅ (RPC) |
| isFreezable | ❌ | ✅ (RPC) |
| isLaunchpadToken | ✅ | ✅ |
| proTraderVolume24hPercentage | ✅ | ✅ |
Important Notes
- RPC Preference: This endpoint uses private RPCs when available for better reliability and performance.
-
Null Values: Many fields may return
nullfor legitimate reasons:- The token contract doesn’t implement the specific restriction
- The function names don’t match common patterns
- RPC call failed or timed out
- Feature not supported on the chain type
-
Interpretation Guidelines:
- High
contractHoldingsPercentage(>10%): Potential centralization or honeypot risk - High
burnedHoldingsPercentage: Generally positive, indicates deflationary supply - High fees (
buyFeePercentage/sellFeePercentage>10%): May limit trading activity - Transfer restrictions (
maxWalletAmountRaw,maxBuyAmountRaw,maxSellAmountRaw): Common anti-whale measures - High
top10HoldingsPercentage(>50%): Significant supply concentration, potential control risk isMintable = true: Token supply can increase, potential inflation riskisFreezable = true: Token accounts can be frozen by authority (common on Solana)isLaunchpadToken = true: Token originated from a bonding curve (Pump.fun, Moonshot, etc.)- Low
proTraderVolume24hPercentage: Most volume is non-organic (bots, direct contract calls), potential wash trading
- High
- Performance: All RPC calls are executed in parallel for optimal response time.
Error Handling
The endpoint returns HTTP 400 for:- Missing or invalid blockchain parameter
- Missing or invalid address parameter
- Token not found in the system
null if specific data points cannot be retrieved.
Use Cases
- Due Diligence: Automated security screening for new tokens
- Trading Bots: Pre-trade validation to avoid tokens with restrictive mechanics
- Portfolio Risk Analysis: Assess holdings for potential red flags
- DeFi Integrations: Validate token compatibility with protocols
- Community Tools: Display security badges or warnings for tokens
- Supply Control Analysis: Monitor holder concentration and distribution via top X holdings percentages
- Bonding Curve Origin: Identify tokens that originated from launchpads/bonding curves (Pump.fun, Moonshot, etc.)
- Organic Volume Detection: Distinguish between terminal UI volume (organic) vs direct/bot volume (non-organic)