Skip to main content
POST
/
v1
/
security
/
dapp-risk
Check dapp risk
curl --request POST \
  --url https://api-nova.tech/v1/security/dapp-risk \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.app"
}
'
{
  "score": 50,
  "reasons": [
    {
      "code": "LOW_LIQUIDITY",
      "message": "Liquidity is thin for this token."
    }
  ],
  "summary": "<string>"
}

Body

application/json
url
string<uri>
required
Example:

"https://example.app"

Response

Dapp risk result.

riskLevel
enum<string>
required
Available options:
low,
medium,
high,
critical
score
integer
required
Required range: 0 <= x <= 100
reasons
object[]
required
summary
string