Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cryptomarket-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/cryptomarket-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomarket-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomarket-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/cryptomarket-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "CoinGecko public API (live)",
        "service": "cryptomarket-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/global": "Whole-market snapshot: total market cap, volume, BTC/ETH dominance, 24h change, active coins.",
            "GET /v1/trending": "The coins trending in search right now (rank, price, 24h change).",
            "GET /v1/treasuries": "Public companies holding Bitcoin/Ethereum (coin=bitcoin|ethereum, limit up to 100)."
        },
        "description": "Live whole-market crypto data from CoinGecko: the global market snapshot (total market cap and 24h volume, BTC/ETH market-cap dominance, 24h change, active coins and markets); the trending coins people are searching for most right now with rank, price and 24h change; and the public companies holding Bitcoin or Ethereum on their balance sheets, ranked by holdings with USD value and totals. Live, no key, nothing stored. Distinct from single-coin price, sector and TVL APIs — this is the whole market, what's trending, and who's holding.",
        "upstream_status": null
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:36.063Z",
        "request_id": "1d837e97-d425-46cb-a8d2-5b8497cf621b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}