Zum Inhalt springen
GET /v1/coin

Single-coin ticker by symbol or id

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "id": "btc-bitcoin",
        "name": "Bitcoin",
        "rank": 1,
        "symbol": "BTC",
        "ath_date": "2025-10-06T19:00:40Z",
        "ath_price": 126173.1777846797,
        "price_usd": 65934.87345802576,
        "max_supply": 21000000,
        "last_updated": "2026-06-15T11:14:15Z",
        "total_supply": 20043038,
        "market_cap_usd": 1321535569853,
        "volume_24h_usd": 24902579482.423485,
        "percent_from_ath": -47.77,
        "percent_change_1h": 0.4000000059604645,
        "percent_change_7d": 4.71999979019165,
        "percent_change_24h": 2.2899999618530273,
        "percent_change_30d": 0
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:45.183Z",
        "request_id": "329c58fc-64d8-4e19-9b05-baa0750b712e"
    },
    "status": "ok",
    "message": "Coin retrieved successfully",
    "success": true
}