/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/tokenomics-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tokenomics-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tokenomics-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/tokenomics-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "CoinGecko public markets + search (live)",
"service": "tokenomics-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/search": "Resolve a coin name/symbol to its id (q=arbitrum).",
"GET /v1/supply": "A coin's supply + dilution metrics (coin=bitcoin or coin=BTC).",
"GET /v1/leaders": "Top-100 ranked by dilution overhang or issuance (order=overhang|issued, limit)."
},
"description": "Live crypto tokenomics from CoinGecko: for any coin, the circulating/total/maximum supply, the percent of max supply issued, market cap and fully-diluted valuation (FDV), the market-cap-to-FDV ratio (share of supply unlocked) and the dilution overhang (percent of FDV still locked or unminted). Also ranks the top coins by dilution overhang or by how much of their cap is issued. Live, no key. Distinct from price, market-cap and all-time-high APIs — this is the supply-and-dilution analytic.",
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-09T03:02:21.938Z",
"request_id": "bc72e2b1-0c83-4d57-ad26-e6e1644b7ae9"
},
"status": "ok",
"message": "Meta",
"success": true
}