Aller au contenu
GET /v1/movers

All pairs ranked by daily change with weekly/monthly leaders

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/fxmovers-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/fxmovers-api/v1/movers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxmovers-api/v1/movers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxmovers-api/v1/movers");
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/fxmovers-api/v1/movers",
    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": {
        "note": "Every major and cross FX pair ranked by change on the day (gainers first), with weekly and monthly leaders. change_1d/1w/1m_pct are simple price changes over 1, ~5 and ~21 trading days. A positive move means the base currency strengthened against the quote.",
        "pairs": [
            {
                "base": "AUD",
                "pair": "AUDUSD",
                "rate": 0.70467,
                "quote": "USD",
                "day_low": 0.7024,
                "day_high": 0.7056,
                "change_1d_pct": 0.75,
                "change_1m_pct": -2.75,
                "change_1w_pct": -1.2
            },
            {
                "base": "USD",
                "pair": "USDNOK",
                "rate": 9.53565,
                "quote": "NOK",
                "day_low": 9.4498,
                "day_high": 9.5563,
                "change_1d_pct": 0.73,
                "change_1m_pct": 3.88,
                "change_1w_pct": 2.13
            },
            {
                "base": "NZD",
                "pair": "NZDUSD",
                "rate": 0.58343,
                "quote": "USD",
                "day_low": 0.5813,
                "day_high": 0.5845,
                "change_1d_pct": 0.69,
                "change_1m_pct": -2.2,
                "change_1w_pct": -0.61
            },
            {
                "base": "EUR",
                "pair": "EURCAD",
                "rate": 1.61868,
                "quote": "CAD",
                "day_low": 1.6154,
                "day_high": 1.62,
                "change_1d_pct": 0.61,
                "change_1m_pct": 0.47,
                "change_1w_pct": 0.27
            },
            {
                "base": "AUD",
                "pair": "AUDJPY",
                "rate": 112.79,
                "quote": "JPY",
                "day_low": 112.583,
                "day_high": 112.891,
                "change_1d_pct": 0.46,
                "change_1m_pct": -1,
                "change_1w_pct": -1.11
            },
            {
                "base": "NZD",
                "pair": "NZDJPY",
                "rate": 93.385,
                "quote": "JPY",
                "day_low": 93.125,
                "day_high": 93.455,
                "change_1d_pct": 0.42,
                "change_1m_pct": -0.42,
                "change_1w_pct": -0.54
            },
            {
                "base": "GBP",
                "pair": "GBPUSD",
                "rate": 1.34165,
                "quote": "USD",
                "day_low": 1.3385,
                "day_high": 1.3426,
                "change_1d_pct": 0.41,
                "change_1m_pct": -1.38,
                "change_1w_pct": -0.08
            },
            {
                "base": "EUR",
                "pair": "EURUSD",
                "rate": 1.15808,
                "quote": "USD",
                "day_low": 1.1561,
                "day_high": 1.1593,
                "change_1d_pct": 0.39,
         
…