Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/scamcheck-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "phishing and dapp take url=https://...; nft takes chain (GoPlus id, default 1=Ethereum) and contract=0x.... Booleans come from the upstream's 0/1 flags.",
        "source": "GoPlus Security (api.gopluslabs.io/api/v1, live)",
        "service": "scamcheck-api",
        "endpoints": {
            "GET /v1/nft": "NFT collection contract risk scan (chain=1&contract=0x...).",
            "GET /v1/dapp": "A dApp's audit and trust status (url=https://app.uniswap.org).",
            "GET /v1/meta": "This document.",
            "GET /v1/phishing": "Is a URL a known crypto phishing site (url=https://example.com)."
        },
        "description": "Live crypto scam, phishing and dApp-safety checks for the things a user clicks or buys, from GoPlus Security. The consumer-protection layer: before connecting a wallet, signing a transaction or minting an NFT, check if it is safe. The phishing endpoint checks whether a URL is a known crypto phishing site; the dapp endpoint returns a dApp's audit and trust status (project name, audited, trust list, audit firms/dates); the nft endpoint scans an NFT collection contract for risk (verified vs fake, open-source vs proxy, owner mint/burn/transfer powers, frozen metadata, item/holder/volume figures). Live, no key, nothing stored. The website / dApp / NFT scam-detection cut — distinct from the token-contract-and-wallet security, historical-exploit and price APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:42.179Z",
        "request_id": "c48644e5-0ae7-456d-ac5f-84cdca794335"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}