Zum Inhalt springen
GET /v1/search

Search the blocklist for domains containing a term

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

Beispiel-Response

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

{
    "data": {
        "note": "Blocklisted domains containing the search term. The blocklist is MetaMask's eth-phishing-detect blacklist.",
        "count": 20,
        "limit": 20,
        "query": "uniswap",
        "offset": 0,
        "source": "MetaMask/eth-phishing-detect",
        "domains": [
            "app-wallet-uniswap.org",
            "uniswap.v2x-app.org",
            "connect-uniswap.org-wallet-connect-network.app",
            "connect-uniswap.org-dex-wallet.app",
            "uniswap.v2-app-x.org",
            "uniswap-zksync.app",
            "uniswap-zksync.net",
            "zksync-uniswap.app",
            "zksync-uniswap.com",
            "zksync-uniswap.net",
            "zksync-uniswap.org",
            "app.uniswap2v.org",
            "uniswap.v-2-app.org",
            "app.uniswap-v2pool.org",
            "proof-of-play-uniswap.vercel.app",
            "uniswapp.xyz",
            "web3-react-osf1gjntb-uniswap.vercel.app",
            "dev-uniswapsupport.pantheonsite.io",
            "uniswap-connecting.site",
            "uniswapconnect.com"
        ],
        "total_matched": 1136
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:09.016Z",
        "request_id": "d5234786-3c05-449d-873c-d6266840b60d"
    },
    "status": "ok",
    "message": "Blocklist searched successfully",
    "success": true
}