/v1/check
Check a domain or URL: blocked / allowed / fuzzy / unknown
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/phishingcheck-api/v1/check" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phishingcheck-api/v1/check", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phishingcheck-api/v1/check");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/phishingcheck-api/v1/check",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Verdict from MetaMask's eth-phishing-detect: allowlist > blocklist > fuzzy typosquat > unknown. is_phishing is true for blocked and fuzzy.",
"type": "neutral",
"input": "app.uniswap.org",
"match": null,
"domain": "app.uniswap.org",
"reason": "Not on the blocklist or allowlist and not a known typosquat. No reputation either way — stay cautious.",
"result": "unknown",
"source": "MetaMask/eth-phishing-detect",
"is_phishing": false,
"list_version": 2
},
"meta": {
"timestamp": "2026-06-14T08:04:08.933Z",
"request_id": "4a5fccc8-4d74-4878-b6af-83a5597af308"
},
"status": "ok",
"message": "Domain checked successfully",
"success": true
}