Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "chain is a GoPlus chain id (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum, solana). Booleans come from the upstream's 0/1 flags; taxes are fractions (0.05 = 5%).",
        "source": "GoPlus Security (api.gopluslabs.io/api/v1, live)",
        "service": "tokensecurity-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/token": "Token contract security — honeypot, taxes, mintable, owner privileges, holders (chain=1&contract=0x...).",
            "GET /v1/chains": "Supported blockchains (id, name).",
            "GET /v1/address": "Wallet risk screening across 20 signals — which are flagged (chain=1&address=0x...)."
        },
        "description": "Live smart-contract risk and safety analysis for crypto tokens and wallet addresses, from GoPlus Security. The token endpoint scans a token contract on any supported chain and returns whether it is a honeypot, its buy/sell tax, whether it is mintable or has a privileged/hidden owner who can pause trading or reclaim ownership, whether it is open-source or a proxy, and holder/LP counts. The address endpoint screens a wallet against twenty risk signals (cybercrime, money laundering, phishing, sanctions, stealing attacks, honeypot-related…) and reports which are flagged. The chains endpoint lists supported blockchains. Live, no key, nothing stored. The real-time contract-security / risk-screening cut of crypto — distinct from the historical exploit-database, price and on-chain APIs.",
        "upstream_status": "ok",
        "supported_chains": 42
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:45.386Z",
        "request_id": "5d0a2bbd-5ca5-4829-ad07-6e64c3fa738c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}