The Easiest Way to Get Iridium (IRD) Historical Rates Using Public APIs
The Easiest Way to Get Iridium (IRD) Historical Rates Using Public APIs
In today's rapidly evolving digital landscape, accessing real-time data has become a cornerstone for developers and businesses alike. One of the most sought-after data types is historical pricing for metals, particularly Iridium (IRD). With the advent of public APIs, obtaining this information has never been easier. In this post, we will explore how to leverage the Metals-API to retrieve historical rates for Iridium, along with detailed examples, parameters, and data formats.
About Iridium (IRD)
Iridium is one of the rarest and most valuable metals on Earth, known for its high density and resistance to corrosion. As industries increasingly turn to digital transformation, the demand for accurate and timely data on Iridium prices has surged. Technological innovations in the metal markets have paved the way for advanced data analytics and insights, enabling businesses to make informed decisions based on real-time information.
With the integration of smart technologies, developers can now build applications that not only track current prices but also analyze historical trends. This capability opens up a world of possibilities, from investment analysis to supply chain management. As we delve deeper into the capabilities of the Metals-API, we will uncover how it empowers developers to harness the transformative potential of real-time metals data.
API Description
The Metals-API is a powerful tool that provides access to a wide range of metal prices and currency conversion functionalities. It offers various endpoints that cater to different needs, from retrieving the latest rates to accessing historical data dating back to 2019. The API is designed to be user-friendly, allowing developers to integrate it seamlessly into their applications.
With a focus on innovation and technological advancement, the Metals-API stands out as a reliable source for real-time metals data. It empowers developers to create next-generation applications that can analyze market trends, forecast prices, and provide insights into the fluctuating world of metals.
Key Features and Endpoints
The Metals-API offers a variety of endpoints, each serving a unique purpose. Here are some of the key features:
- Latest Rates Endpoint: Depending on your subscription plan, this endpoint returns real-time exchange rate data updated every 60 minutes, every 10 minutes, or even more frequently. Developers can easily access the latest prices for Iridium and other metals.
- Historical Rates Endpoint: This feature allows users to access historical rates for most currencies dating back to 2019. By appending a specific date to the API request, developers can retrieve past prices for Iridium, enabling them to analyze trends over time.
- Bid and Ask Endpoint: This powerful feature provides real-time Bid and Ask prices, essential for traders looking to make informed decisions in the market.
- Convert Endpoint: The API includes a currency conversion endpoint, allowing users to convert any amount from one metal to another or to/from USD. This is particularly useful for businesses dealing with multiple currencies.
- Time-Series Endpoint: Developers can query the API for daily historical rates between two dates of their choice, providing a comprehensive view of price movements over time.
- Fluctuation Endpoint: This endpoint tracks how currencies fluctuate on a day-to-day basis, offering insights into market volatility.
- Carat Endpoint: Users can retrieve information about Gold rates by Carat, which is essential for jewelers and gold traders.
- Lowest/Highest Price Endpoint: This feature allows users to query the API to get the lowest and highest prices for a specified date.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific date, which is crucial for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a wealth of data for analysis.
- API Key: Each user is assigned a unique API key, which must be included in the API request to authenticate access.
- API Response: The API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available currencies, ensuring users have access to the latest information.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping users informed about market trends.
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. This resource is invaluable for developers looking to integrate specific metal data into their applications.
API Endpoint Examples and Responses
To illustrate the capabilities of the Metals-API, let's explore some example endpoints and their corresponding JSON responses.
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1770073696,
"base": "USD",
"date": "2026-02-02",
"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": 1769987296,
"base": "USD",
"date": "2026-02-01",
"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-01-26",
"end_date": "2026-02-02",
"base": "USD",
"rates": {
"2026-01-26": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-01-28": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-02-02": {
"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": 1770073696,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-01-26",
"end_date": "2026-02-02",
"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": 1770073696,
"base": "USD",
"date": "2026-02-02",
"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": 1770073696,
"base": "USD",
"date": "2026-02-02",
"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 comprehensive and user-friendly solution for accessing historical rates of Iridium and other metals. With its wide array of endpoints, developers can easily retrieve real-time data, analyze historical trends, and integrate this information into their applications. The API's capabilities extend beyond mere data retrieval; it empowers developers to create innovative solutions that can transform how businesses interact with the metal markets.
By leveraging the power of the Metals-API, developers can stay ahead of the curve in an increasingly competitive landscape. Whether you are building a trading platform, a market analysis tool, or a financial dashboard, the Metals-API offers the tools you need to succeed. For more information, visit the Metals-API Website and explore the Metals-API Documentation for detailed guidance on implementation.
As the demand for accurate and timely data continues to grow, the Metals-API stands as a beacon of innovation in the metal markets. Embrace the future of data analytics and insights by integrating this powerful API into your projects today.