/v1/ticker
Pair full market summary
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/firi-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/firi-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/firi-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/firi-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": 607211.18,
"bid": 601000.79,
"coin": "BTC",
"fiat": "NOK",
"last": 609904.79,
"pair": "BTCNOK",
"venue": "Firi",
"source": "Firi",
"spread": 6210.39,
"day_low": 586452.56,
"day_high": 611157.48,
"spread_pct": 1.0228,
"change_24h_pct": 3.26,
"day_volume_coin": 5.16,
"todays_volume_coin": null
},
"meta": {
"timestamp": "2026-06-12T01:42:42.452Z",
"request_id": "2d64e172-d708-4148-93a7-1588cdfcbd6e"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}