Skip to content
GET /v1/address

Wallet address risk screening

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/tokensecurity-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "note": "flagged lists the set risk signals; an empty list means no risk signals were found for this address.",
        "chain": "1",
        "flags": {
            "mixer": false,
            "reinit": false,
            "fake_kyc": false,
            "gas_abuse": false,
            "cybercrime": false,
            "fake_token": false,
            "sanctioned": false,
            "blacklist_doubt": false,
            "financial_crime": false,
            "stealing_attack": false,
            "contract_address": true,
            "money_laundering": false,
            "phishing_activities": false,
            "blackmail_activities": false,
            "darkweb_transactions": false,
            "fake_standard_interface": false,
            "honeypot_related_address": false,
            "malicious_mining_activities": false,
            "number_of_malicious_contracts_created": false
        },
        "risky": false,
        "source": "GoPlus",
        "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "flagged": [],
        "data_source": null,
        "is_contract": true
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:44.686Z",
        "request_id": "026d3121-e930-44d7-b765-4f4dc52e063e"
    },
    "status": "ok",
    "message": "Address security retrieved successfully",
    "success": true
}