Skip to main content

Overview

Risk DD endpoints provide comprehensive risk due diligence for blockchain entities. Use these endpoints to analyze addresses, tokens, smart contracts, and more for security threats, fraud indicators, and compliance risks.

Core Analysis

Fundamental risk assessment endpoints for any blockchain entity.

Wallet Risks

Specialized endpoints for wallet-level risk assessment and compliance.

When to Use Risk DD

Use CaseRecommended Endpoints
Wallet screeningThreat Risks, Sanction Checks, Exposure Risk
Token due diligenceToken Analysis, Holder Analysis
Smart contract auditContract Risk, Threat Risks
Compliance checksSanction Checks, Threat Risks
Approval auditingApproval Risks
Phishing preventionURL Risks

Example Workflow

Screen a New Token

# 1. Check the token contract for risks
curl -X GET "https://api.webacy.com/tokens/0x123...?chain=eth" \
  -H "x-api-key: YOUR_API_KEY"

# 2. Analyze holder distribution
curl -X GET "https://api.webacy.com/holder-analysis/0x123...?chain=eth" \
  -H "x-api-key: YOUR_API_KEY"

# 3. Check deployer/owner for threats
curl -X GET "https://api.webacy.com/addresses/0xdeployer...?chain=eth" \
  -H "x-api-key: YOUR_API_KEY"

Compliance Screening

# Check address against sanctions
curl -X GET "https://api.webacy.com/addresses/sanctioned/0x123..." \
  -H "x-api-key: YOUR_API_KEY"

# Full threat analysis
curl -X GET "https://api.webacy.com/addresses/0x123...?chain=eth" \
  -H "x-api-key: YOUR_API_KEY"