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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Coin ids are lowercase CoinGecko ids (bitcoin, ethereum, solana). vs currencies are fiats or major coins (usd, eur, btc, eth). A 60s protective cache shields the shared upstream rate limit.",
        "source": "CoinGecko /simple/price + /simple/supported_vs_currencies (live, keyless)",
        "service": "cryptoconvert-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/price": "Live price of coins in currencies + market cap/volume/change (ids=bitcoin,ethereum&vs=usd,eur).",
            "GET /v1/convert": "Convert an amount of a coin to a fiat or another coin (from=bitcoin&to=usd&amount=2).",
            "GET /v1/supported": "Every currency you can quote or convert into."
        },
        "description": "Live crypto price and currency conversion from the public CoinGecko feed. A conversion utility, distinct from market-overview, arbitrage and coin-profile tools. The price endpoint returns the live price of one or more coins in one or more currencies with market cap, 24h volume and 24h change; the convert endpoint converts an amount of a coin into a fiat currency or another coin (2 BTC to EUR, or 1.5 BTC to ETH); the supported endpoint lists every currency you can quote or convert into. Live, no key.",
        "upstream_status": "ok",
        "supported_currencies": 63
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:22.380Z",
        "request_id": "12278db5-9fd0-423c-b305-7a822b90d774"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}