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/cryptomovers-api

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/cryptomovers-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomovers-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomovers-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/cryptomovers-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 (live)",
        "periods": [
            "1h",
            "24h",
            "7d"
        ],
        "service": "cryptomovers-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/losers": "Top losers over a window (period=1h|24h|7d, limit).",
            "GET /v1/movers": "Top gainers and losers together (period=24h, limit each).",
            "GET /v1/gainers": "Top gainers over a window (period=1h|24h|7d, limit)."
        },
        "description": "Live crypto top-gainers and top-losers from CoinGecko: across the 1h, 24h and 7d windows, the biggest gainers and losers among the market-cap-leading coins, each with price, percent move, market cap and 24h volume. Get the gainers board, the losers board, or both. A junk filter keeps to coins with a real market cap. Live, no key. Distinct from trending (most-searched) and price/market-cap APIs — this is the performance gainers/losers leaderboard.",
        "universe_size": 250,
        "min_market_cap_usd": 10000000
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:13.548Z",
        "request_id": "dcd3c256-6488-42b8-9568-b207d3853dee"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}