Get Accurate LME Nickel (LME-NI) Prices in USD, EUR, and GBP with this API
Get Accurate LME Nickel (LME-NI) Prices in USD, EUR, and GBP with this API
In today's fast-paced financial landscape, having access to accurate and real-time data is crucial for businesses and developers alike. The Metals-API provides a powerful solution for obtaining precise LME Nickel (LME-NI) prices in various currencies, including USD, EUR, and GBP. This blog post will delve into how Metals-API empowers developers to harness the potential of real-time metals data, explore the innovative features of the API, and discuss potential business applications.
About Nickel (XNI)
Nickel, represented by the symbol XNI, is a vital metal in various industries, particularly in the production of stainless steel and batteries. As the world shifts towards digital transformation, the metal markets are also evolving. Technological innovations and advancements in data analytics are reshaping how businesses interact with metal pricing and trading. The integration of smart technologies allows for more efficient operations, enabling companies to make informed decisions based on real-time data.
With the rise of electric vehicles and renewable energy technologies, the demand for nickel is expected to surge. This trend presents numerous opportunities for businesses to leverage accurate pricing data to optimize their operations. By utilizing the Metals-API, developers can create applications that provide insights into nickel pricing trends, helping businesses stay ahead of the curve.
API Description
The Metals-API is designed to provide developers with comprehensive access to real-time and historical metal prices, including LME Nickel. With its robust capabilities, the API allows for the creation of next-generation applications that can analyze and visualize metal pricing data. The API's innovative features include:
- 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. This feature is essential for businesses that require up-to-the-minute pricing information.
- Historical Rates Endpoint: Access historical rates for most currencies dating back to 2019. By appending a specific date to your query, you can retrieve historical pricing data, which is invaluable for trend analysis and forecasting.
- Bid And Ask Endpoint: This powerful feature enables you to retrieve real-time bid and ask prices for metals, allowing traders to make informed decisions based on current market conditions.
- Convert Endpoint: Easily convert any amount from one currency to another. This endpoint is particularly useful for businesses operating in multiple currencies, ensuring accurate financial reporting.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, providing insights into pricing trends over time.
- Fluctuation Endpoint: Retrieve information about how currencies fluctuate on a day-to-day basis, helping businesses understand market volatility.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date, which can aid in identifying market trends.
- Open/High/Low/Close (OHLC) Price Endpoint: Get the open, high, low, and close prices for a specific time period, which is essential for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, allowing for extensive market analysis.
- API Key: Your unique API key is required to access the API, ensuring secure and authorized usage.
- API Response: Exchange rates are delivered relative to USD by default, with all data returned in a structured JSON format.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you informed about market developments.
For a complete list of supported symbols, including nickel, refer to the Metals-API Supported Symbols page.
API Endpoint Examples and Responses
Understanding how to interact with the Metals-API is crucial for developers looking to integrate metal pricing data into their applications. Below are examples of various API endpoints and their responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1769559664,
"base": "USD",
"date": "2026-01-28",
"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"
}
This response provides the latest rates for various metals, including nickel (XNI), which is priced at 0.142857 per troy ounce.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999:
{
"success": true,
"timestamp": 1769473264,
"base": "USD",
"date": "2026-01-27",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This endpoint allows you to retrieve historical pricing data, which can be used for analysis and reporting.
Time-Series Endpoint
Get exchange rates for a specific time period:
{
"success": true,
"timeseries": true,
"start_date": "2026-01-21",
"end_date": "2026-01-28",
"base": "USD",
"rates": {
"2026-01-21": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-01-23": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-01-28": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This response provides daily rates for a specified period, allowing for trend analysis.
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": 1769559664,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This endpoint is particularly useful for businesses that need to convert values between different currencies or metals.
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-01-21",
"end_date": "2026-01-28",
"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"
}
This response provides insights into how prices have changed over a specified period, which is crucial for traders and analysts.
OHLC (Open/High/Low/Close) Price Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1769559664,
"base": "USD",
"date": "2026-01-28",
"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 endpoint is essential for traders who rely on technical analysis to make informed decisions.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1769559664,
"base": "USD",
"date": "2026-01-28",
"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"
}
This response provides the bid and ask prices, which are critical for traders looking to execute orders at the best possible prices.
Conclusion
The Metals-API is a transformative tool for developers and businesses seeking accurate and real-time metal pricing data. With its extensive features, including the ability to access the latest rates, historical data, and fluctuations, the API empowers users to make informed decisions based on reliable information. By integrating the Metals-API into their applications, developers can create innovative solutions that enhance operational efficiency and drive business growth.
For more information on how to get started with the Metals-API, visit the Metals-API Documentation. Explore the full range of supported symbols on the Metals-API Supported Symbols page, and discover how this powerful API can revolutionize your approach to metal pricing.