Standard Report Endpoint

Endpoint

POST /v1/standard-report

Cost

$1.00

Response Time

~10 seconds

Rate Limit

20 requests/hour

When to Use

Request

{
  "project_address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "chain": "ethereum",
  "include_sections": ["contract", "tokenomics", "team", "social"]
}

Parameters

Field Type Required Description
project_address string Yes Contract address
chain string Yes Blockchain network
include_sections array No Optional section filter

Response Sections

Code Example

import x402_requests

response = x402_requests.post(
    'https://csds.blockchainrangers.com/api/v1/standard-report',
    json={
        'project_address': '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb',
        'chain': 'ethereum',
        'include_sections': ['contract', 'tokenomics', 'team', 'social']
    }
)

report = response.json()

print(f"Risk Score: {report['risk_score']}/100")
print(f"Risk Level: {report['risk_level']}")
print(f"\nTop Red Flags:")
for flag in report['red_flags'][:3]:
    print(f"  [{flag['severity']}] {flag['description']}")

print(f"\nRecommendation: {report['recommendation']['verdict']}")
print(f"Reasoning: {report['recommendation']['reasoning']}")