/v1/ticker
Ticker for one market
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}