Zum Inhalt springen
GET /v1/stats

Sizes and version of the loaded eth-phishing-detect lists

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/phishingcheck-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/phishingcheck-api/v1/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phishingcheck-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phishingcheck-api/v1/stats");
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/stats",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Sizes of MetaMask's eth-phishing-detect lists currently loaded.",
        "source": "MetaMask/eth-phishing-detect",
        "list_version": 2,
        "allowlist_count": 42,
        "blocklist_count": 198096,
        "fuzzy_tolerance": 1,
        "fuzzylist_count": 8
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:09.104Z",
        "request_id": "5cc9236b-166d-47e7-9190-3ff25139fc8a"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}