Access Iron Ore 65% Fe (IRON65) Exchange Rates API Documentation in JSON Format
Access Iron Ore 65% Fe (IRON65) Exchange Rates API Documentation in JSON Format
In today's fast-paced digital landscape, the demand for real-time data is paramount, especially in the metal markets. The Metals-API provides developers with a powerful tool to access exchange rates for various metals, including Iron Ore (IRON65). This blog post will delve into how to retrieve exchange rates in JSON format using the Metals-API, offering sample API responses and integration tips to empower developers in building next-generation applications.
About Iron Ore (IRON)
Iron Ore is a critical raw material in the production of steel, which is essential for various industries, including construction, automotive, and manufacturing. As the world moves towards digital transformation, the metal markets are experiencing significant changes driven by technological innovation and advancements in data analytics. The integration of smart technologies is enabling stakeholders to gain insights and make informed decisions based on real-time data.
The Metals-API plays a pivotal role in this transformation by providing developers with access to real-time and historical exchange rates for metals. This API empowers businesses to leverage data analytics, enabling them to track market trends, optimize supply chains, and enhance decision-making processes.
API Description
The Metals-API is designed to provide comprehensive access to metals pricing and currency conversion in a user-friendly JSON format. With a focus on innovation and technological advancement, this API allows developers to build applications that can respond to market changes in real-time. The API supports a variety of endpoints, each offering unique functionalities that cater to different use cases.
For more information, visit the Metals-API Documentation, where you can find detailed descriptions of each endpoint and its capabilities.
Key Features and Endpoints
The Metals-API offers several key features that developers can utilize to enhance their applications:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated every 60 minutes, 10 minutes, or even more frequently, depending on your subscription plan. This feature is crucial for applications that require up-to-the-minute pricing information.
- Historical Rates Endpoint: Access historical exchange rates dating back to 2019. By appending a specific date to your query, you can retrieve past rates, which is invaluable for trend analysis and forecasting.
- Bid and Ask Endpoint: This powerful feature allows you to retrieve real-time bid and ask prices for metals, enabling traders to make informed decisions based on current market conditions.
- Convert Endpoint: The conversion endpoint allows you to convert any amount from one metal to another or to/from USD. This is particularly useful for applications that need to display prices in different currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This feature is essential for analyzing price movements over time.
- Fluctuation Endpoint: Retrieve information about how currencies fluctuate on a day-to-day basis, which can help in understanding market volatility.
- Carat Endpoint: Get information about Gold rates by Carat, allowing for more precise pricing in jewelry and luxury goods.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest price for a specified date, which is useful for identifying market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific time period, aiding in technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, which is beneficial for long-term market analysis.
- API Key: Your unique API key is essential for accessing the API and must be included in your requests.
- API Response: The Metals-API delivers exchange rates relative to USD by default, ensuring consistency across responses.
- Available Endpoints: With 14 different endpoints, the Metals-API provides a wide range of functionalities to cater to various needs.
- Supported Symbols Endpoint: This constantly updated endpoint returns all available currencies, ensuring you have access to the latest symbols.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you informed about market developments.
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
To illustrate the capabilities of the Metals-API, here are several examples of API responses for different endpoints:
Latest Rates Endpoint
{
"success": true,
"timestamp": 1767661683,
"base": "USD",
"date": "2026-01-06",
"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"
}
The response above shows the latest exchange rates for various metals, with the base currency set to USD. Each rate is provided per troy ounce, which is the standard measurement for precious metals.
Historical Rates Endpoint
{
"success": true,
"timestamp": 1767575283,
"base": "USD",
"date": "2026-01-05",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This response demonstrates how to access historical rates for a specific date. The data can be used for trend analysis and market research.
Time-series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-12-30",
"end_date": "2026-01-06",
"base": "USD",
"rates": {
"2025-12-30": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-01-01": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-01-06": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
The time-series response provides daily rates for a specified period, allowing developers to analyze price trends over time.
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1767661683,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This example shows how to convert an amount from one metal to another. In this case, 1000 USD is converted to 0.482 troy ounces of Gold (XAU).
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-12-30",
"end_date": "2026-01-06",
"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"
}
The fluctuation endpoint provides insights into how rates have changed over a specified period, which can be critical for traders and analysts.
OHLC (Open/High/Low/Close) Price Endpoint
{
"success": true,
"timestamp": 1767661683,
"base": "USD",
"date": "2026-01-06",
"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"
}
This response provides the open, high, low, and close prices for a specific date, which is essential for technical analysis and trading strategies.
Bid/Ask Endpoint
{
"success": true,
"timestamp": 1767661683,
"base": "USD",
"date": "2026-01-06",
"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"
}
The bid/ask endpoint provides current bid and ask prices, along with the spread, which is crucial for traders looking to execute orders efficiently.
Conclusion
The Metals-API is a powerful resource for developers looking to access real-time and historical exchange rates for metals like Iron Ore (IRON65). By leveraging the various endpoints offered by the API, developers can create applications that provide valuable insights into market trends, optimize trading strategies, and enhance decision-making processes.
With features such as the Latest Rates, Historical Rates, and Bid/Ask endpoints, the Metals-API empowers developers to harness the potential of real-time data in the metal markets. For more information on how to integrate these features into your applications, refer to the Metals-API Documentation and explore the Metals-API Supported Symbols for a comprehensive list of available metals.
As the industry continues to evolve, staying informed and utilizing advanced technologies will be key to success in the metal markets. Embrace the future with the Metals-API and unlock the potential of real-time metals data.