Zum Inhalt springen
GET /v1/movers

Biggest currency gainers and losers (12m)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/eer-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/eer-api/v1/movers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eer-api/v1/movers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eer-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/eer-api/v1/movers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "type": "nominal",
        "basket": "broad (64 economies)",
        "source": "Bank for International Settlements",
        "window": "12 months",
        "biggest_losers": [
            {
                "as_of": "2026-04",
                "country": "Argentina",
                "eer_index": 5.13,
                "country_code": "AR",
                "change_12m_pct": -23.43
            },
            {
                "as_of": "2026-04",
                "country": "Türkiye",
                "eer_index": 15.67,
                "country_code": "TR",
                "change_12m_pct": -17.92
            },
            {
                "as_of": "2026-04",
                "country": "Japan",
                "eer_index": 68.46,
                "country_code": "JP",
                "change_12m_pct": -13.15
            },
            {
                "as_of": "2026-04",
                "country": "India",
                "eer_index": 82.41,
                "country_code": "IN",
                "change_12m_pct": -11.41
            },
            {
                "as_of": "2026-04",
                "country": "Philippines",
                "eer_index": 89.26,
                "country_code": "PH",
                "change_12m_pct": -7.5
            }
        ],
        "strongest_gainers": [
            {
                "as_of": "2026-04",
                "country": "Israel",
                "eer_index": 130.11,
                "country_code": "IL",
                "change_12m_pct": 20.16
            },
            {
                "as_of": "2026-04",
                "country": "Colombia",
                "eer_index": 106.7,
                "country_code": "CO",
                "change_12m_pct": 13.45
            },
            {
                "as_of": "2026-04",
                "country": "Mexico",
                "eer_index": 126.53,
                "country_code": "MX",
                "change_12m_pct": 12.86
            },
            {
                "as_of": "2026-04",
                "country": "Brazil",
                "eer_index": 115.4,
                "country_code": "BR",
                "change_12m_pct": 11.68
            },
            {
                "as_of": "2026-04",
                "country": "South Africa",
                "eer_index": 103.62,
                "country_code": "ZA",
                "change_12m_pct": 10.68
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:49.260Z",
        "request_id": "cb8ef645-3058-47ca-927e-6563b48f07e8"
    },
    "status": "ok",
    "message": "Movers retrieved successfully",
    "success": true
}