Skip to main content
Integração B2B canónica: API v1 (POST /api/v1/wallets/risk) com X-API-Key. Esta página é o caminho legado. URL correcto: https://api.nzochain.com/api/risk/scan. Só EVM nas quatro redes suportadas — não Solana.
The risk scan endpoint analyzes a wallet address and returns risk signals for product integrations that still use the legacy path.

Endpoint

Request body

string
required
Morada EVM (0x…) numa das quatro redes suportadas.
string
Chain identifier to scope the scan, such as "ethereum", "polygon", or "solana". When omitted, NZOChain auto-detects the chain based on the address format. Default: auto-detect.
boolean
default:"false"
When true, the response includes a detailed breakdown of individual contract interactions and token approvals that contributed to the score. Default: false.

Example request

Response fields

number
required
A score from 0 to 100 representing the overall threat level of the wallet. Higher scores indicate greater risk.
string
required
Categorical threat status derived from the risk score. One of "SAFE", "WARNING", "HIGH RISK", or "CRITICAL".
string[]
required
A list of human-readable threat descriptions detected during the scan. Empty when no threats are found.
string
required
ISO 8601 timestamp indicating when the scan was performed, e.g., "2024-01-15T10:30:00Z".
string
required
The chain on which the scan was performed, e.g., "ethereum".

Example response — HIGH RISK

Example response — SAFE

Code examples