Naar de inhoud
GET /v1/ticker

Ticker for one market

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/paribu-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}