Skip to content
GET /v1/phishing

Is a URL a known crypto phishing site

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/scamcheck-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "url": "https://www.uniswap.org",
        "note": "is_phishing true means the URL is flagged as a known crypto phishing site.",
        "source": "GoPlus",
        "is_phishing": false,
        "website_contract_risks": []
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:41.116Z",
        "request_id": "89518a1b-1f28-4c45-b7c2-af0f77f43b3c"
    },
    "status": "ok",
    "message": "Phishing check completed",
    "success": true
}