Bank of Israel FX Rates
Official Bank of Israel exchange rates (USD, EUR, GBP, more) with full history, in JSON and XML.
About this API
The Bank of Israel publishes daily official FX rates against the Shekel. Their OData API is free, key-less, and exposes years of history. If you are building fintech or bookkeeping for Israel — cards, wallets, freelancer tools — this is essential.
Who it's for
How to use it
- 1Hit the OData endpoint: https://edge.boi.gov.il/FusionEdgeServer/sdmx/v2/data/…
- 2Pick currencies (USD, EUR…) and a date range.
- 3Receive structured JSON with date, currency, value and change.
- 4Cache locally; poll daily at 07:00 Israel time.
Installation & setup
No install. Just a single HTTP call from a daily cron. Respect ETag/If-Modified-Since to avoid redundant pulls.
Code examples
curl "https://boi.org.il/PublicApi/GetExchangeRates?asJson=true"Sample response
{
"exchangeRates": [
{
"key": "USD",
"currentExchangeRate": 3.782,
"currentChange": -0.21,
"lastUpdate": "2026-04-17T14:00:00"
},
{
"key": "EUR",
"currentExchangeRate": 4.051,
"currentChange": 0.13,
"lastUpdate": "2026-04-17T14:00:00"
},
{
"key": "GBP",
"currentExchangeRate": 4.742,
"currentChange": 0.08,
"lastUpdate": "2026-04-17T14:00:00"
}
]
}FAQ
Tips & pitfalls
Guides
Related APIs
CoinGecko API
Leading crypto API — prices, trading volumes and history for 10,000+ coins.
CoinMarketCap API
Crypto data from Binance — high accuracy and prices from hundreds of exchanges.
Alpha Vantage
Free API for global stock data — NASDAQ, NYSE, Asia, forex and crypto.
ExchangeRate-API
Currency rates for 161 currencies with a free tier of 1,500 calls/month.
Polygon.io
Real-time market data for NASDAQ, NYSE and options — industry standard for algo trading.