
Free, open-source threat intelligence API for detecting phishing sites and cryptocurrency scams in real time
d or urlcurl "https://api.destroy.tools/v1/check?domain=metamask-login.xyz"
{
"domain": "metamask-login.xyz",
"threat": true,
"severity": "critical",
"risk_score": 85,
"active": true,
"lists": { "primary": true, "community": true },
"flags": ["curated_blocklist", "community_reported", "dns_active", "multi_source", "suspicious_keywords", "risky_tld"],
"matched_keywords": ["metamask", "login"],
"checked_at": "2025-02-10T22:00:00.000Z"
}curl -X POST "https://api.destroy.tools/v1/check/bulk" -H "Content-Type: application/json" -d '{"domains":["metamask-login.xyz","google.com"]}'curl "https://api.destroy.tools/v1/search?q=metamask&limit=10"
primary community primary_active community_activeconst r = await fetch("https://api.destroy.tools/v1/check?domain=" + domain);
const data = await r.json();
if (data.threat) console.warn("BLOCKED:", data.severity, "score:", data.risk_score);
import requests
r = requests.get(f"https://api.destroy.tools/v1/check?domain={domain}")
if r.json()["threat"]: print("PHISHING:", r.json()["severity"])Every domain gets a risk score (0-100) based on multiple signals:
Critical 70-100 · High 40-69 · Medium 20-39 · Low 1-19
PhishDestroy is a volunteer-driven, open-source cybersecurity project fighting phishing and cryptocurrency scams since 2019. Over 500,000+ threats neutralized across 25+ networks.
The API is free, requires no API key, and syncs hourly from the destroylist repository. Use it in browser extensions, security tools, firewalls, bots, or SIEM systems.
We don't just collect — we destroy.
+ many more integrated into our threat intelligence pipeline