Solana Tracker

Risk Scores API

The Risk Score API helps assess token investment risk by evaluating multiple factors and generating a normalized risk score from 1-10. This enables users to make more informed decisions when trading tokens on Solana.

Risk Categories

Risk factors are grouped into three main categories based on severity:

Scoring Methodology

The final risk score is normalized to a scale of 1 to 10, calculated based on the sum of individual risk factor scores (weights). Higher scores indicate higher risk.

Warning Risk Factors

These factors indicate potential concerns but may have legitimate explanations:

Risk FactorDescriptionScore
No social mediaToken has no associated social media links2000
No file metadataToken has no file metadata100
Pump.fun contract risksPump.fun contracts can be changed by Pump.fun at any time10
Incomplete bonding curveNo Raydium liquidity pool, bonding curve not complete4000
Transitioning to RaydiumToken is currently transitioning to Raydium100
Price decreasePrice decreased by more than 50% in the last 24 hours1000

Danger Risk Factors

These factors indicate serious concerns that could impact token value and tradability:

Risk FactorDescriptionScore
Freeze Authority EnabledTokens can be frozen and prevented from trading in the future7500
Mint Authority EnabledMore tokens can be minted by the owner at any time2500
RuggedNo liquidity, token is considered unsafe to purchase20000
LP BurnedAllows the owner to remove liquidity at any time4000

Liquidity Risk Factors

These factors assess token liquidity and holder concentration:

Liquidity Levels

Risk FactorDescriptionLevelScore
Very Low LiquidityThe total liquidity for this token is very lowDanger7500
Low LiquidityThe total liquidity for this token is lowWarning5000

Holders

The following risk scores are applied based on the percentage owned by the largest holder:

ThresholdLevelScore
>90%Danger7000
>80%Danger6000
>70%Danger4600
>60%Danger4400
>50%Danger4300
>40%Danger4100
>30%Danger3500
>20%Danger2500
>10%Danger2000

Risk FactorDescriptionLevelScore
Top 10 HoldersTop 10 holders own more than 15% of the total supplyDanger5000

API Integration

Risk score is returned on all token objects. Example:

{
   "risk":{
      "rugged":false,
      "risks":[
         {
            "name":"Pump.fun contracts can be changed at any time",
            "description":"Pump.fun contracts can be changed by Pump.fun at any time",
            "level":"warning",
            "score":10
         },
         {
            "name":"Bonding curve not complete",
            "description":"No raydium liquidity pool, bonding curve not complete",
            "level":"warning",
            "score":4000
         }
      ],
      "score":3
   }
}

More risk factors will be added soon to improve the accuracy and comprehensiveness of the risk assessment.

On this page