Prerequisites: You need a Risk API key and familiarity with the Token Risk Assessment and Address Risk Score endpoints.
When to Use This
- Exchanges - Before listing a new token for trading
- DEX aggregators - Before including a token in routing
- Portfolio trackers - Before displaying a token’s price and details
- DeFi protocols - Before accepting a token as collateral or in liquidity pools
- Wallet providers - Before showing token metadata to users
Step 1: Assess Token Risk
Submit the token’s mint address to get a multi-factor risk assessment.Interpreting the Response
The response contains anoverall_assessment with the aggregate risk, and risk_factors with individual assessments.
Step 2: Understand the Risk Factors
The 17 risk factors fall into 5 categories. Focus on the factors most relevant to your use case:Critical Factors for Listing Decisions
Contextual Factors
Using the errors Array
Not all 17 factors can be assessed for every token. The errors array lists skipped assessments:
Step 3: Check the Deployer Address
For additional context, check the risk score of the address that deployed the token. A high-risk deployer is a strong signal of a problematic token.The deployer address isn’t returned by the Token Risk Assessment API - you’ll need to look it up onchain (e.g., via the Solana Explorer or your own indexer). If you don’t have the deployer address, you can skip this step. The Token Risk Assessment is comprehensive on its own.
Step 4: Make a Listing Decision
Combine the token risk assessment and deployer check into a decision framework. Different platforms have different risk tolerances:Exchange Listing Criteria
DEX Aggregator / Portfolio Tracker Criteria
DEX aggregators and portfolio trackers typically have broader inclusion criteria since users are selecting tokens themselves:Step 5: Monitor Over Time
Token risk is not static. Tokens that pass initial due diligence can deteriorate:- Rug pull preparation - Authority controls re-enabled, liquidity removed
- Wash trading emergence - Artificial volume after listing
- Holder concentration shifts - Token accumulation by few addresses
Complete Due Diligence Function
What’s Next
Token Risk Assessment
Full endpoint reference with all 17 risk factors explained.
Understanding Risk Scores
How token risk percentages are calculated and how to interpret them.