Retrieve Israeli New Sheqel (ILS) Historical Prices using this API
Retrieve Israeli New Sheqel (ILS) Historical Prices using this API
The Israeli New Sheqel (ILS) is a vital currency in the Middle Eastern financial landscape, and understanding its historical prices can provide valuable insights for traders, analysts, and developers alike. With the advent of APIs like Metals-API, retrieving historical prices has become more accessible and efficient. This blog post will delve into how to utilize the Metals-API to access historical prices of the ILS, explore its features, and discuss the transformative potential of real-time metals data.
About Israeli New Sheqel (ILS)
The Israeli New Sheqel (ILS) is the official currency of Israel, symbolized by ₪. It has undergone significant changes since its introduction in 1985, reflecting the country's economic evolution. As the global market increasingly embraces digital transformation, the metal markets are no exception. The integration of technological innovations and advancements in data analytics has revolutionized how traders and developers interact with currency data.
In the context of the ILS, the digital transformation has enabled more efficient trading practices, allowing for real-time insights into currency fluctuations. The integration of smart technology into trading platforms has empowered developers to create applications that can analyze trends, predict future movements, and provide actionable insights. As we explore the capabilities of the Metals-API, it becomes clear that the future of currency trading, including the ILS, is poised for significant advancements.
API Description
The Metals-API is a powerful tool designed for developers seeking to access real-time and historical data on metals and currencies, including the Israeli New Sheqel. This API provides a comprehensive suite of features that allow users to build next-generation applications capable of delivering real-time insights and analytics. With its user-friendly interface and extensive documentation, developers can easily integrate the API into their applications.
For more information, visit the Metals-API Website or refer to the Metals-API Documentation for detailed guidance on implementation.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs, each with unique functionalities. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for various currencies, including the ILS. Depending on your subscription plan, updates can occur every 60 minutes or even more frequently.
- Historical Rates Endpoint: Users can access historical rates for most currencies dating back to 2019. By appending a specific date in the format YYYY-MM-DD, developers can retrieve past exchange rates for the ILS.
- Bid And Ask Endpoint: This feature allows users to obtain real-time bid and ask prices, which are crucial for making informed trading decisions.
- Convert Endpoint: The API includes a currency conversion feature, enabling users to convert amounts from one currency to another seamlessly.
- Time-Series Endpoint: This endpoint allows users to query daily historical rates between two specified dates, providing a comprehensive view of currency trends over time.
- Fluctuation Endpoint: Users can track how currencies fluctuate on a day-to-day basis, offering insights into market volatility.
- Carat Endpoint: This feature provides information about gold rates by carat, which can be particularly useful for jewelers and investors.
- Lowest/Highest Price Endpoint: Users can query the API to find the lowest and highest prices for a specified date, aiding in market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific date, essential for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, useful for those involved in metal trading.
- API Key: Each user is assigned a unique API key that must be included in requests to authenticate access.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data presentation.
- Available Endpoints: The Metals-API features 14 endpoints, each designed to provide specific functionalities tailored to user needs.
- Supported Symbols Endpoint: This endpoint returns a constantly updated list of all available currencies, including the ILS.
- Intraday Endpoint: Users can query intraday exchange rate data for a single symbol, providing insights into short-term market movements.
List of Symbols
The Metals-API provides access to a comprehensive range of metal symbols. For a complete list of all supported symbols and their specifications, refer to the Metals-API Supported Symbols page.
API Endpoint Examples and Responses
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1788912835,
"base": "USD",
"date": "2026-09-09",
"rates": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912,
"XPD": 0.000744,
"XCU": 0.294118,
"XAL": 0.434783,
"XNI": 0.142857,
"XZN": 0.344828
},
"unit": "per troy ounce"
}
Historical Rates Endpoint
Access historical exchange rates for any date since 1999.
{
"success": true,
"timestamp": 1788826435,
"base": "USD",
"date": "2026-09-08",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
Time-series Endpoint
Get exchange rates for a specific time period.
{
"success": true,
"timeseries": true,
"start_date": "2026-09-02",
"end_date": "2026-09-09",
"base": "USD",
"rates": {
"2026-09-02": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-09-04": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-09-09": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
Convert Endpoint
Convert any amount from one metal to another or to/from USD.
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1788912835,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-09-02",
"end_date": "2026-09-09",
"base": "USD",
"rates": {
"XAU": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
},
"XAG": {
"start_rate": 0.03825,
"end_rate": 0.03815,
"change": -0.0001,
"change_pct": -0.26
},
"XPT": {
"start_rate": 0.000915,
"end_rate": 0.000912,
"change": -3.0e-6,
"change_pct": -0.33
}
},
"unit": "per troy ounce"
}
OHLC (Open/High/Low/Close) Endpoint
Get OHLC data for a specific time period.
{
"success": true,
"timestamp": 1788912835,
"base": "USD",
"date": "2026-09-09",
"rates": {
"XAU": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
},
"XAG": {
"open": 0.03825,
"high": 0.0383,
"low": 0.0381,
"close": 0.03815
},
"XPT": {
"open": 0.000915,
"high": 0.000918,
"low": 0.00091,
"close": 0.000912
}
},
"unit": "per troy ounce"
}
Bid/Ask Endpoint
Get current bid and ask prices for metals.
{
"success": true,
"timestamp": 1788912835,
"base": "USD",
"date": "2026-09-09",
"rates": {
"XAU": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 2.0e-6
},
"XAG": {
"bid": 0.0381,
"ask": 0.0382,
"spread": 0.0001
},
"XPT": {
"bid": 0.000911,
"ask": 0.000913,
"spread": 2.0e-6
}
},
"unit": "per troy ounce"
}
Conclusion
In conclusion, the Metals-API provides a robust framework for developers looking to retrieve historical prices of the Israeli New Sheqel (ILS) and other currencies. By leveraging the various endpoints, users can access real-time data, historical rates, and valuable insights into market trends. The API's capabilities empower developers to create innovative applications that can analyze and predict currency movements, ultimately enhancing trading strategies.
For further exploration of the API's features, refer to the Metals-API Documentation and discover the full range of supported symbols at the Metals-API Supported Symbols page. As the financial landscape continues to evolve, embracing these technological advancements will be crucial for staying ahead in the market.