Quickly assess whether a given URL is SAFE or MALICIOUS.
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>" }
The URL to check.
Score indicating the likelihood of the URL being malicious.
Classification of the URL based on the scan results.
SAFE
MALICIOUS
UNRATED
The scanned URL.