/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/cryptoath-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoath-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoath-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/cryptoath-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "CoinGecko public markets + search (live)",
"service": "cryptoath-api",
"endpoints": {
"GET /v1/ath": "A coin's ATH/ATL stats (coin=bitcoin or coin=BTC).",
"GET /v1/meta": "This document.",
"GET /v1/search": "Resolve a coin name/symbol to its id (q=solana).",
"GET /v1/leaders": "Top-100 coins ranked by distance from ATH (order=near|far, limit)."
},
"description": "Live crypto all-time-high tracker from CoinGecko: for any coin, the current price, its all-time high with date and how far below it the price sits now (the '% below ATH'), days since the high, and the mirror metrics versus the all-time low. Also ranks the top coins by how close they are to — or how far they have fallen from — their ATH. Get a coin's ATH stats, the leaders/laggards board, or search to resolve a name. Live, no key. Distinct from live-price, market-cap and OHLC APIs — this is the all-time-high / drawdown analytic.",
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-09T03:02:33.524Z",
"request_id": "5b8087e6-671f-409f-ad40-4ec6dcc15069"
},
"status": "ok",
"message": "Meta",
"success": true
}