URL Checking

[ POST ] https://api.malcore.io/api/urlcheck


Path Params

  • url string

Headers

  • apiKey string


Request

curl -X POST https://api.malcore.io/api/urlcheck \
   -H "apiKey: MY-API-KEY" |
   --data "url=http://my.bad/url" \

Response

🟢 200

{
  "threat_level": [
    "UNWANTED_SOFTWARE"
  ],
  "success": true,
  "defanged_url": "hxxp://185.216.71.16/ewe/ewe.exe",
  "time_taken": 0.2167830467224121
}

🔴 400

{}

Last updated