Skip to main content
GET
/
v1
/
address
/
connections
Get Address Counterparties
curl --request GET \
  --url https://api.range.org/v1/address/connections \
  --header 'X-API-KEY: <api-key>'
{
  "address": "<string>",
  "network": "<string>",
  "name": "<string>",
  "type": "<string>",
  "malicous": true,
  "tags": {},
  "is_validator": true,
  "total_payments": 123,
  "payment_counts": [
    {}
  ],
  "earliest_payment": "<string>",
  "latest_payment": "<string>",
  "last_transaction": {
    "time": "<string>",
    "amount": "<string>",
    "denom": "<string>"
  },
  "is_sender": true,
  "is_receiver": true
}

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

network
string
required

Network of Address

address
string
required

Address to search

groupBy
string
required

"address" mode or "entity" mode

startTime
string

Start time

endTime
string

End time

Response

200 - application/json

List of addresses that the specified address has interacted with.

address
string
required
network
string
required
name
string
required
type
string
required
malicous
boolean
required
tags
object
required
is_validator
boolean
required
total_payments
number
required
payment_counts
object[]
required
earliest_payment
string
required
latest_payment
string
required
last_transaction
object
required
is_sender
boolean
required
is_receiver
boolean
required