Skip to main content
POST
/
v1
/
wallet
/
url
Scan URL (phishing)
curl --request POST \
  --url https://api.novashield.so/v1/wallet/url \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>"
}
'
{
  "success": true,
  "data": {
    "isPhishing": true,
    "confidence": 123,
    "riskLevel": "SAFE",
    "verdict": "<string>",
    "reasons": [
      "<string>"
    ],
    "similarTo": "<string>",
    "recommendations": [
      "<string>"
    ]
  },
  "timestamp": "2023-11-07T05:31:56Z"
}
Returns phishing verdict, confidence, reasons, and recommendations.

Body

application/json
url
string
required

URL to analyze for phishing

Response

URL analysis complete

success
boolean
data
object
timestamp
string<date-time>