Zum Inhalt springen
GET /v1/ticker

Ticker for one market

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "ask": 2890872,
        "bid": 2889762,
        "base": "BTC",
        "last": 2890872,
        "quote": "TL",
        "market": "BTC_TL",
        "source": "Paribu",
        "spread": 1110,
        "avg_24h": 2858239,
        "low_24h": 2812031,
        "high_24h": 2904247,
        "change_24h": 19872,
        "change_24h_pct": 0.69,
        "base_volume_24h": 51.966097,
        "quote_volume_24h": 150227334.77
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:30.190Z",
        "request_id": "0de7baa8-472d-43d3-a47b-3387aad20f1f"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}