跳转到主要内容
POST
/
api
/
v1
/
risk
/
check-domain
域名风险检查
curl --request POST \
  --url https://api.example.com/api/v1/risk/check-domain \
  --header 'Content-Type: application/json' \
  --data '
{
  "origin": "https://app.uniswap.org"
}
'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "riskLevel": "low",
    "labels": [
      "dex"
    ],
    "reasons": []
  }
}

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

域名风险检测请求。

origin
string
必填

DApp 域名或来源地址。

示例:

"https://app.uniswap.org"

响应

200 - application/json

成功返回域名风险

统一响应包裹结构。

code
integer
必填

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

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object

域名风险检测结果。