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

Body

application/json

Address risk-check request.

chainId
integer
required

Chain ID.

Example:

8453

address
string
required

Address to inspect.

Example:

"0xdef4560000000000000000000000000000000000"

Response

200 - application/json

Address 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

Address risk-check result.