Developer documentation

Build compliant crypto products, faster.

A clean, well-documented REST API to screen wallets, monitor transactions and integrate AML checks into your onboarding flow — in minutes.

Fast

Median response under 120 ms across all supported chains.

Trusted

Sanctions data refreshed continuously from official lists.

Simple

Single API key, predictable JSON, clear error codes.

Getting started

Authentication

Every request is authenticated with a Bearer token. You can generate keys from your dashboard and rotate them at any time.

Authorization header
Authorization: Bearer csk_live_a3f9...
Reference

Endpoints

GET/v1/address/{address}

Returns the full risk report for any supported address. Chain is auto-detected.

Request
curl https://api.chainscope.io/v1/address/0xa160cd...3f291 \
  -H "Authorization: Bearer csk_live_a3f9..."
Response
{
  "address": "0xa160cd...3f291",
  "chain": "ETH",
  "score": 96,
  "level": "severe",
  "entity": "Sanctioned mixer",
  "tags": ["Mixer", "Sanctioned"]
}
POST/v1/screen/batch

Screen up to 100 addresses in a single request. Ideal for periodic re-screening.

Request
curl -X POST https://api.chainscope.io/v1/screen/batch \
  -H "Authorization: Bearer csk_live_a3f9..." \
  -H "Content-Type: application/json" \
  -d '{"addresses": ["0xabc...", "bc1q..."]}'
Response
{
  "results": [
    { "address": "0xabc...", "score": 12, "level": "low" },
    { "address": "bc1q...", "score": 74, "level": "high" }
  ]
}
POST/v1/webhooks

Subscribe to alerts when a screened address crosses a risk threshold.

Request
curl -X POST https://api.chainscope.io/v1/webhooks \
  -H "Authorization: Bearer csk_live_a3f9..." \
  -d '{"url": "https://your.app/hook", "threshold": 60}'
Response
{ "id": "wh_2N4f...", "active": true }
Plans

Rate limits

Free
100
requests / day

For evaluation and small projects.

Pro
10,000
requests / day

50 req/s burst. For production workloads.

Enterprise
Custom
dedicated SLA

Volume pricing and priority support.

Ready to integrate?

Create a free account and start screening addresses today.

Get an API key