Skip to main content
POST
/
v1
/
token
/
bundle
Detect Bundlers
curl --request POST \
  --url https://api.novashield.so/v1/token/bundle \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "solana",
  "mint": "<string>",
  "period": "launch"
}
'
{
  "mint": "<string>",
  "period": "launch",
  "isHighRisk": true,
  "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
      }
    ]
  }
}
Returns a 0-100 bundler score, risk level, metrics, details, and recommendations.

Body

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

Token mint address to analyze

period
enum<string>

Analysis period (default: recent)

Available options:
launch,
recent

Response

Bundle analysis complete

mint
string
period
enum<string>
Available options:
launch,
recent
isHighRisk
boolean

True if bundler risk is HIGH or CRITICAL

analysis
object