Getting Started

First Request in 5 Minutes

Get started with the Blockchain Rangers Due Diligence API in just a few steps.

Step 1: Install x402 Client

For Python:

pip install x402-requests

For JavaScript/Node.js:

npm install x402-axios

Step 2: Make Your First Request

Python example:

import x402_requests

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

result = response.json()
print(f"Risk Score: {result['risk_score']}/100")
print(f"Risk Level: {result['risk_level']}")

Step 3: Understand the Results

Next Steps