Skip to main content
GET
/
v2
/
risk
/
solana
/
counterparties
/
{address}
List Solana owner-level counterparties for an address
curl --request GET \
  --url https://api.range.org/v2/risk/solana/counterparties/{address} \
  --header 'Authorization: Bearer <token>'
{
  "address": "6jvKxD9qbSbfuZxxUDQZcdHCKZvytuQ7JhcFKsa5Bhif",
  "txsScanned": 100,
  "truncated": true,
  "windowStart": "2025-11-08T03:21:14Z",
  "windowEnd": "2026-05-12T07:57:00Z",
  "counterparties": [
    {
      "owner": "ARu4n5mFdZogZAravu7CcizaojWnS6oqka37gdLT5SZn",
      "txCount": 8,
      "firstSeen": "2024-11-12T08:42:00Z",
      "lastSeen": "2026-05-12T07:57:00Z",
      "assets": [
        {
          "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
          "symbol": "USDC",
          "received": 37.1499,
          "sent": 3.4335,
          "netFlow": 33.7164,
          "receivedUsd": 37.14,
          "sentUsd": 3.43,
          "netFlowUsd": 33.71
        }
      ],
      "totalReceivedUsd": 37.14,
      "totalSentUsd": 3.43
    }
  ]
}

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

address
string
required

Response

200 - application/json
address
string
required

Target wallet address (owner account on Solana)

Example:

"6jvKxD9qbSbfuZxxUDQZcdHCKZvytuQ7JhcFKsa5Bhif"

txsScanned
number
required

Number of parsed transactions scanned (single Helius page)

Example:

100

truncated
boolean
required

true when the address has more history than the single page returned

Example:

true

windowStart
string | null
required

ISO timestamp of the earliest tx scanned (null if no txs found)

Example:

"2025-11-08T03:21:14Z"

windowEnd
string | null
required

ISO timestamp of the latest tx scanned (null if no txs found)

Example:

"2026-05-12T07:57:00Z"

counterparties
object[]
required

Owner-level counterparties sorted by interaction count, descending

Last modified on May 19, 2026