Skip to content
GET /v1/ticker

Ticker for one market

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/paribu-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}