POST/api/v1/wallet/risk

Wallet-risk screening. Requires wallet:risk:read.

Request

curl
curl https://rugburn.io/api/v1/wallet/risk \
  -H "Authorization: Bearer $RUGBURN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"walletAddress":"SOLANA_WALLET_ADDRESS"}'

Response Data

json
{
  "walletAddress": "...",
  "riskScore": 80,
  "riskLevel": "critical",
  "confidence": "high",
  "summary": "Critical wallet risk...",
  "recommendedAction": "block",
  "signals": [
    {
      "label": "sanctions",
      "severity": "critical",
      "points": 100,
      "detail": "Wallet is labeled as sanctions.",
      "source": "manual_review"
    }
  ],
  "exposures": [],
  "deployedTokens": [],
  "modelVersion": "wallet-risk-v0.1"
}

Compliance Boundary

This is wallet-risk screening, not a legal compliance determination. Use therecommendedActionfield to route operator review, not to automate final legal decisions.