Skip to main content
POST
/
v1
/
token
/
rug
Rug Predict
curl --request POST \
  --url https://api.novashield.so/v1/token/rug \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "solana",
  "mint": "<string>"
}
'
{
  "mint": "<string>",
  "period": "launch",
  "analysis": {
    "bundlerScore": 123,
    "riskLevel": "LOW",
    "metrics": {
      "timingCluster": 123,
      "walletSimilarity": 123,
      "sizePatterns": 123,
      "distribution": 123
    },
    "details": {
      "totalTransactions": 123,
      "uniqueWallets": 123,
      "suspiciousWallets": 123,
      "analysisPeriod": "<string>"
    },
    "verdict": "<string>",
    "concerns": [
      "<string>"
    ],
    "recommendations": [
      "<string>"
    ],
    "topBuyers": [
      {
        "wallet": "<string>",
        "totalAmount": 123,
        "supplyPercentage": 123,
        "transactionCount": 123,
        "isDevRelated": true
      }
    ]
  },
  "rug": {
    "riskScore": 123,
    "riskLevel": "LOW",
    "verdict": "<string>",
    "canTrade": true,
    "isHighRisk": true,
    "summary": "<string>",
    "reasons": [
      "<string>"
    ],
    "recommendations": [
      "<string>"
    ]
  }
}
Combines bundler analytics with a concise summary, reasons, and recommendations.

Body

application/json
chain
enum<string>
required
Available options:
solana
mint
string
required

Token mint address to analyze

Response

Bundle + rug-style analysis complete

mint
string
period
enum<string>
Available options:
launch,
recent
analysis
object
rug
object