/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/nft-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nft-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nft-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/nft-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "CoinGecko public NFT API (live)",
"service": "nft-api",
"endpoints": {
"GET /v1/list": "Paged list of tracked collections (page=1, per_page up to 100).",
"GET /v1/meta": "This document.",
"GET /v1/search": "Search collections by name (q=penguin).",
"GET /v1/collection": "A collection's market data (id=pudgy-penguins): floor, market cap, volume, owners, supply."
},
"description": "Live NFT collection market data from CoinGecko: for any collection, the floor price in native currency and USD, the 24h floor change, market cap, 24h volume and its change, unique owners, total supply, contract address, chain and project links; a paged list of tracked collections; and search by name. Across every chain CoinGecko indexes NFTs on. Live, no key, nothing stored. Distinct from token-price and single-chain APIs — this is NFT collection floor prices, market caps and volumes.",
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-09T11:39:25.941Z",
"request_id": "d5d90398-95ad-4cff-b2dd-60fffb829afa"
},
"status": "ok",
"message": "Meta",
"success": true
}