Get started with the Blockchain Rangers Due Diligence API in just a few steps.
For Python:
pip install x402-requests
For JavaScript/Node.js:
npm install x402-axios
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']}")