Skip to main content
GET
/
v2
/
risk
/
address
/
batch
Score multiple addresses (max 50)
curl --request GET \
  --url https://api.range.org/v2/risk/address/batch \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "screen_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28",
      "network": "ethereum",
      "tier": "high",
      "exposure": {
        "triggered": [
          {
            "signal": "sanctions_ofac",
            "severity": "severe",
            "mode": "binary",
            "result": true,
            "percentage": 42.3,
            "amount_usd": 184500,
            "evidence": [
              {
                "type": "counterparty",
                "summary": "Interacted with OFAC-sanctioned address 0xDEF... on 2026-03-15",
                "details": {
                  "address": "0xDEF...",
                  "tx_hash": "0x789...",
                  "timestamp": "2026-03-15T14:22:00Z",
                  "entity": "Tornado Cash",
                  "list": "OFAC SDN"
                }
              }
            ],
            "weight": 8
          }
        ],
        "score_contribution": 72
      },
      "behaviour": {
        "detected": [
          {
            "behaviour": "smurfing",
            "confidence": 0.78,
            "severity": "high",
            "evidence": [
              {
                "type": "counterparty",
                "summary": "Interacted with OFAC-sanctioned address 0xDEF... on 2026-03-15",
                "details": {
                  "address": "0xDEF...",
                  "tx_hash": "0x789...",
                  "timestamp": "2026-03-15T14:22:00Z",
                  "entity": "Tornado Cash",
                  "list": "OFAC SDN"
                }
              }
            ],
            "weight": 7,
            "ignored": false
          }
        ],
        "score_contribution": 15
      },
      "scored_at": "2026-05-04T14:30:00Z"
    }
  ],
  "meta": {
    "total": 5,
    "scored": 5,
    "errors": 0
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Query Parameters

addresses
string
required

Comma-separated list of addresses (max 50).

network
string
required
window
string
include_evidence
string

Response

200 - application/json
items
object[]
required
meta
object
required
Last modified on May 19, 2026