Aller au contenu
GET /v1/ticker

Pair full market summary

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/firi-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}