← Back to Security & Essentials

Phishing Detection

Heuristic-based phishing URL detection

https://hub.toolweb.in/security/phishing-detection/

Endpoints

POST /check-url

Check Url

Request Body (JSON)

{
  "url": "<string>"
}

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/security/phishing-detection/
# Python
import requests
r = requests.get("https://hub.toolweb.in/security/phishing-detection/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/security/phishing-detection/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.