Skip to main content
POST
/
v1
/
wallet
/
dapp
Scan dApp (wallet)
curl --request POST \
  --url https://api.novashield.so/v1/wallet/dapp \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "app.raydium.io",
  "ai_analyzed": true
}
'
{
  "domain": "<string>",
  "verdict": "safe",
  "score": 0.5,
  "tags": [
    "<string>"
  ],
  "explanations": [
    "<string>"
  ]
}
Optionally runs AI + web intelligence to classify risk and provide explanations and tags.

Body

application/json
domain
string
required

dApp domain to analyze

Example:

"app.raydium.io"

ai_analyzed
boolean

Whether to run AI + web search analysis (default: true)

Example:

true

Response

dApp analysis complete

domain
string
verdict
enum<string>
Available options:
safe,
suspicious,
malicious,
unknown
score
number
Required range: 0 <= x <= 1
tags
string[]
explanations
string[]