POST
/
fast-check
curl --request POST \
  --url https://api.urldna.io/fast-check \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>"
}'
{
  "malicious_score": 123,
  "status": "SAFE",
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Body

application/json
url
string
required

The URL to check.

Response

200
application/json
Fast check result retrieved successfully.
malicious_score
number

Score indicating the likelihood of the URL being malicious.

status
enum<string>

Classification of the URL based on the scan results.

Available options:
SAFE,
MALICIOUS,
UNRATED
url
string

The scanned URL.