Vai al contenuto
GET /v1/meta

Service metadata and endpoint catalog

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

Risposta di esempio

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

{
    "data": {
        "source": "Bank of Israel public API (boi.org.il, live)",
        "service": "boi-api",
        "usd_ils": 2.973,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/rate": "One currency's official rate, shekel-per-unit and inverse, plus daily change (currency=USD).",
            "GET /v1/rates": "The BOI official rate for every currency vs the shekel, with daily change.",
            "GET /v1/movers": "Currencies ranked by daily change vs the shekel — gainers and losers (limit=5).",
            "GET /v1/convert": "Convert an amount between two currencies at BOI rates (from=USD, to=EUR, amount=100)."
        },
        "description": "Live official exchange-rate data from the Bank of Israel (BOI), the central bank of Israel, for the new shekel (ILS), via its public API — each rate with the day's percentage change. The rates endpoint returns the BOI's official representative rate for every published currency against the shekel, normalised to one unit; the rate endpoint returns a single currency's official rate (shekel-per-unit and the inverse) plus the daily change; the movers endpoint ranks currencies by their daily change against the shekel (biggest gainers and losers); the convert endpoint converts an amount between any two published currencies (including ILS) at the BOI's official rates, cross-computed through the shekel. Live, no key, nothing stored. Distinct from the ECB, SNB, NBU, HNB, NBG, NBRB, CBU, CBAR and other central-bank feeds and from market mid-rates — this is the Bank of Israel's own official shekel representative rate with daily change and movers.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T14:00:10.456Z",
        "request_id": "9a07e3cb-a745-481b-be55-f80b9714b9b9"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}