Quick Check Endpoint

Endpoint

POST /v1/quick-check

Cost

$0.10

Response Time

~2 seconds

Rate Limit

100 requests/hour

When to Use

Request

{
  "project_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "chain": "ethereum"
}

Parameters

Field Type Required Description
project_address string Yes Contract address
chain string Yes ethereum, bsc, polygon, etc.

Response

{
  "risk_score": 75,
  "risk_level": "HIGH",
  "top_flags": [
    "Unverified smart contract",
    "90% tokens held by top 10 wallets",
    "Liquidity not locked"
  ],
  "confidence": 0.89,
  "recommendation": "AVOID"
}

Response Fields

Field Type Description
risk_score integer 0-100, higher = more risky
risk_level string LOW, MEDIUM, HIGH, CRITICAL
top_flags array Top 5 red flags identified
confidence float 0.0-1.0, analysis confidence
recommendation string SAFE, CAUTION, or AVOID

Code Example

import x402_requests

response = x402_requests.post(
    'https://csds.blockchainrangers.com/api/v1/quick-check',
    json={
        'project_address': '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb',
        'chain': 'ethereum'
    }
)

data = response.json()

if data['risk_score'] > 70:
    print(f"⚠️ HIGH RISK: {data['risk_level']}")
    print(f"Red flags: {', '.join(data['top_flags'])}")
else:
    print(f"✅ Risk appears acceptable: {data['risk_level']}")