跳转到主要内容
POST
/
api
/
v1
/
risk
/
check-address
地址风险检查
curl --request POST \
  --url https://api.example.com/api/v1/risk/check-address \
  --header 'Content-Type: application/json' \
  --data '
{
  "chainId": 8453,
  "address": "0xdef4560000000000000000000000000000000000"
}
'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "riskLevel": "low",
    "labels": [],
    "reasons": [],
    "source": "internal"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

Use this file to discover all available pages before exploring further.

请求体

application/json

地址风险检测请求。

chainId
integer
必填

链 ID。

示例:

8453

address
string
必填

待检测地址。

示例:

"0xdef4560000000000000000000000000000000000"

响应

200 - application/json

成功返回地址风险

统一响应包裹结构。

code
integer
必填

业务状态码,0 表示成功。

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object

地址风险检测结果。