Skip to main content
GET
/
v2
/
screening
/
{network}
/
addresses
/
{address}
/
risk
Calculate Address Risk (Explicit Network)
curl --request GET \
  --url https://api.range.org/v2/screening/{network}/addresses/{address}/risk \
  --header 'Authorization: Bearer <token>'
{
  "network": "ethereum",
  "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "maliciousConnections": {
    "connections": [
      {
        "address": "0x1234567890abcdef",
        "isMalicious": true,
        "direction": "incoming",
        "volume": 1500.5,
        "entityName": "Tornado Cash",
        "labels": [
          "mixer",
          "sanctions"
        ],
        "categories": [
          "defi",
          "mixer"
        ]
      }
    ],
    "maliciousIncomingVolume": 5000.25,
    "maliciousOutgoingVolume": 3000.75,
    "totalIncomingVolume": 10000.5,
    "totalOutgoingVolume": 8000.25
  },
  "assessedAt": "2026-02-10T12:00:00Z",
  "attribution": {}
}

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

Path Parameters

network
string
required

The blockchain network identifier (eth, solana, stellar)

Example:

"eth"

address
string
required

The blockchain address to assess

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"

Response

200 - application/json

Risk assessment for the specified address

network
string
required

The blockchain network

Example:

"ethereum"

address
string
required

The address being screened

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"

maliciousConnections
object
required

Malicious connections report

assessedAt
string
required

Timestamp of the risk assessment

Example:

"2026-02-10T12:00:00Z"

attribution
object
required
Last modified on May 15, 2026