Vai al contenuto
GET /v1/movers

Currencies ranked by daily change vs the shekel

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/boi-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "base": "ILS",
        "date": "2026-06-10",
        "note": "daily change of the currency against the shekel, in percent",
        "losers": [
            {
                "currency": "LBP",
                "ils_per_unit": 3.0e-5,
                "daily_change_pct": 0
            },
            {
                "currency": "SEK",
                "ils_per_unit": 0.3132,
                "daily_change_pct": 0.2882
            },
            {
                "currency": "ZAR",
                "ils_per_unit": 0.1795,
                "daily_change_pct": 0.5039
            },
            {
                "currency": "AUD",
                "ils_per_unit": 2.0848,
                "daily_change_pct": 0.5498
            },
            {
                "currency": "NOK",
                "ils_per_unit": 0.3132,
                "daily_change_pct": 0.7722
            }
        ],
        "source": "Bank of Israel",
        "gainers": [
            {
                "currency": "JOD",
                "ils_per_unit": 4.1935,
                "daily_change_pct": 1.2092
            },
            {
                "currency": "CAD",
                "ils_per_unit": 2.1342,
                "daily_change_pct": 1.1997
            },
            {
                "currency": "USD",
                "ils_per_unit": 2.973,
                "daily_change_pct": 1.1913
            },
            {
                "currency": "GBP",
                "ils_per_unit": 3.9814,
                "daily_change_pct": 1.1406
            },
            {
                "currency": "EUR",
                "ils_per_unit": 3.4346,
                "daily_change_pct": 1.0414
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-10T14:00:09.392Z",
        "request_id": "8bd7bbfd-2c3b-4f0f-a050-3ded749c92e7"
    },
    "status": "ok",
    "message": "Movers retrieved successfully",
    "success": true
}