Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cryptoath-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}