Standard report

Everything a quick check returns, plus a section-by-section breakdown: contract verification, owner privileges, holder concentration, liquidity, trading patterns, and tokenomics — each with its own sub-score and evidence.

POST /api/v1/standard-report $1.00100 / hour

Auth: account balance or x402. See Authentication.

Request

FieldTypeRequiredDescription
project_addressstringRequiredContract/mint address.
chainstringRequiredA supported chain.
include_sectionsstring[]OptionalSubset to return. Default ["contract","tokenomics","team","social"].
curl -X POST https://csds.blockchainrangers.com/api/v1/standard-report \
  -H "Content-Type: application/json" \
  -d '{
    "project_address": "0x…",
    "chain": "ethereum",
    "include_sections": ["contract", "tokenomics"]
  }'
$body = @{ project_address = "0x…"; chain = "ethereum"; include_sections = @("contract","tokenomics") } | ConvertTo-Json
Invoke-RestMethod "https://csds.blockchainrangers.com/api/v1/standard-report" `
  -Method Post -Body $body -ContentType "application/json"
import httpx

r = httpx.post(
    "https://csds.blockchainrangers.com/api/v1/standard-report",
    json={"project_address": "0x…", "chain": "ethereum"},
)
report = r.json()
csds check 0x… --chain ethereum --full --format json

Response

The top level mirrors a quick check (risk_score, risk_level, confidence, recommendation) and adds a sub-object per dimension, each with its own risk_score:

SectionHighlights
verificationSource-code verified, audit status, honeypot detection.
owner_privilegesMint/freeze authority, dangerous admin functions.
holder_concentrationTop-10/top-100 %, Gini, largest holder.
liquidityTotal liquidity, pools, lock status.
trading_patternsVolume/price spikes vs. historical baseline.
red_flags / green_flagsCategorized signals with severity.
{
  "risk_score": 64,
  "risk_level": "HIGH",
  "recommendation": { "verdict": "AVOID", "reasoning": "…" },
  "confidence": 0.9,
  "verification": { "contract_verified": false, "honeypot_detected": false, "risk_score": 80 },
  "owner_privileges": { "has_dangerous_functions": true, "detected_functions": ["mint", "pause"], "risk_score": 75 },
  "holder_concentration": { "top_10_percentage": 71.4, "gini_coefficient": 0.88, "risk_score": 70 },
  "liquidity": { "total_liquidity_usd": 18400, "pools": [ { "dex": "Uniswap", "locked": false } ], "risk_score": 60 },
  "trading_patterns": { "volume_spike_detected": true, "risk_score": 55 },
  "red_flags": [ { "severity": "HIGH", "category": "ownership", "description": "Mint authority active" } ],
  "green_flags": []
}

Errors

See the error reference. Unfunded requests return 402.

Related

Quick check Just the score and top flags. Deep dive Adds history + monitoring. How scoring works The dimensions and weights.