Skip to main content
POST
/
api
/
v1
/
risk
/
check-domain
Check domain risk
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.

Body

application/json

Domain risk-check request.

origin
string
required

DApp origin or domain.

Example:

"https://app.uniswap.org"

Response

200 - application/json

Domain risk response

Standard response envelope.

code
integer
required

Business status code. 0 means success.

Example:

0

msg
string
required

Human-readable message.

Example:

"ok"

data
object

Domain risk-check result.