/v1/nft
NFT collection contract risk scan
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/scamcheck-api/v1/nft" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scamcheck-api/v1/nft", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scamcheck-api/v1/nft");
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/nft",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"name": "BoredApeYachtClub",
"note": "NFT collection contract risk. red_flag true means it is on a malicious list; check privileged_* and metadata_frozen for owner powers.",
"chain": "1",
"items": 10000,
"source": "GoPlus",
"symbol": "BAYC",
"holders": 5604,
"contract": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D",
"is_proxy": false,
"red_flag": null,
"description": "The Bored Ape Yacht Club is a collection of 10,000 unique Bored Ape NFTs— unique digital collectibles living on the Ethereum blockchain. Your Bored Ape doubles as your Yacht Club membership card, and grants access to members-only benefits, the first of which is access to THE BATHROOM, a collaborative graffiti board. Future areas and perks can be unlocked by the community through roadmap activation. Visit www.BoredApeYachtClub.com for more details.",
"is_verified": true,
"total_volume": 2007942.0829,
"self_destruct": false,
"is_open_source": true,
"metadata_frozen": null,
"privileged_burn": false,
"traded_volume_24h": 28.51,
"privileged_minting": null,
"restricted_approval": false,
"transfer_without_approval": false
},
"meta": {
"timestamp": "2026-06-11T16:46:41.826Z",
"request_id": "4e0b8db7-7aa5-4477-9132-693400480fef"
},
"status": "ok",
"message": "NFT security retrieved successfully",
"success": true
}