跳转到主要内容
GET
/
v1
/
kyt
/
addresses
/
{address}
/
risk
KYT - 获取地址风险
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
    }
  ],
  "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

地址

Example:

"0x0038AC785dfB6C82b2c9A7B3B6854e08a10cb9f1"

Response

200 - application/json
address
string
required

地址

Example:

"0x0038AC785dfB6C82b2c9A7B3B6854e08a10cb9f1"

risk
string
required

风险级别

Example:

"Low"

riskReason
string | null
required

风险原因

Example:

null

addressType
string
required

地址类型

Example:

"PRIVATE_WALLET"

cluster
string | null
required

集群

Example:

null

addressIdentifications
string[]
required

地址识别列表

Example:
[]
exposures
object[]
required

暴露列表

triggers
string[]
required

触发器列表

Example:
[]
status
string
required

状态

Example:

"COMPLETE"