Developer API

The ChainGuard API provides real-time risk scoring for crypto addresses. Our edge network (powered by Cloudflare Workers) ensures latency below 50ms globally.

example.py
# Python Example
import requests

url = "https://api.guoerdan.xyz/check_address"
headers = {
    "Authorization": "Bearer sk_live_..."
}
params = {
    "address": "0x123...", 
    "chain": "Ethereum"
}

response = requests.get(url, headers=headers, params=params)
print(response.json())

Endpoints

GET/v1/check_address

Returns the risk profile and AI summary for a specific wallet.

  • address (string, required): The wallet address to scan.
  • chain (string, optional): The blockchain (e.g. Ethereum).