Skip to main content
GET
/
v1
/
kyt
/
addresses
/
{address}
/
risk
KYT - Get Address Risk
curl --request GET \
  --url https://api-dex.chainstream.io/v1/kyt/addresses/{address}/risk \
  --header 'Authorization: Bearer <token>'
{
  "address": "0x0038AC785dfB6C82b2c9A7B3B6854e08a10cb9f1",
  "risk": "Low",
  "riskReason": null,
  "addressType": "PRIVATE_WALLET",
  "cluster": null,
  "addressIdentifications": [],
  "exposures": [
    {
      "category": "exchange",
      "value": "424895.68594",
      "exposureType": "indirect",
      "direction": "both_directions"
    }
  ],
  "triggers": [],
  "status": "COMPLETE"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

address
string
required

Address

Example:

"0x0038AC785dfB6C82b2c9A7B3B6854e08a10cb9f1"

Response

200 - application/json
address
string
required

Address

Example:

"0x0038AC785dfB6C82b2c9A7B3B6854e08a10cb9f1"

risk
string
required

Risk level

Example:

"Low"

riskReason
string | null
required

Risk reason

Example:

null

addressType
string
required

Address type

Example:

"PRIVATE_WALLET"

cluster
string | null
required

Cluster

Example:

null

addressIdentifications
string[]
required

Address identification list

Example:
[]
exposures
object[]
required

Exposure list

triggers
string[]
required

Trigger list

Example:
[]
status
string
required

Status

Example:

"COMPLETE"