Get real-time Lanthanum (LTH) prices using this API
Get Real-Time Lanthanum (LTH) Prices Using This API
In the rapidly evolving landscape of metal markets, the ability to access real-time data is paramount for developers and businesses alike. Lanthanum (LTH), a rare earth metal, plays a crucial role in various industries, including electronics, automotive, and renewable energy. With the advent of advanced APIs like the Metals-API, developers can now harness the power of real-time pricing data, enabling them to create innovative applications that respond to market fluctuations and trends.
Metals-API Information
About Lanthanum (LTH)
Lanthanum is a silvery-white metal that is part of the lanthanide series on the periodic table. It is primarily used in the production of catalysts for petroleum refining, in the manufacturing of glass and ceramics, and in various electronic components. As industries increasingly rely on digital transformation and technological innovation, the demand for accurate and timely data on metals like Lanthanum has surged.
The integration of smart technology and data analytics into metal markets has opened new avenues for businesses. By leveraging real-time data, companies can gain insights into market trends, optimize their supply chains, and make informed decisions. The future of metal markets is undoubtedly intertwined with advancements in technology, and APIs like Metals-API are at the forefront of this transformation.
API Description
The Metals-API is a powerful tool that provides developers with access to real-time and historical data on various metals, including Lanthanum. This API empowers developers to build next-generation applications that can track price fluctuations, analyze historical trends, and perform currency conversions seamlessly. With its robust capabilities, the Metals-API is designed to meet the needs of businesses looking to stay ahead in the competitive metal markets.
For detailed information on how to implement this API, developers can refer to the Metals-API Documentation, which provides comprehensive guidance on endpoints, parameters, and response formats.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different data needs. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for Lanthanum and other metals, updated based on your subscription plan. Depending on the plan, updates can occur every 60 minutes or even every 10 minutes, ensuring that you have the most current information at your fingertips.
- Historical Rates Endpoint: Access historical rates dating back to 2019. This feature allows developers to analyze trends over time by appending a specific date to the API request, enabling insights into how prices have fluctuated historically.
- Bid and Ask Endpoint: This powerful feature retrieves real-time bid and ask prices for Lanthanum, providing a clear picture of the current market conditions. Understanding the bid-ask spread is crucial for traders and investors looking to make informed decisions.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint that allows users to convert amounts between different metals or to/from USD. This is particularly useful for businesses operating in multiple currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two specified dates. This endpoint is invaluable for conducting in-depth analyses and understanding price movements over specific periods.
- Fluctuation Endpoint: Track how prices fluctuate on a day-to-day basis. This endpoint provides insights into market volatility, helping businesses strategize their buying and selling decisions.
- Carat Endpoint: Retrieve information about gold rates by carat, which is essential for jewelers and gold traders. This feature allows for precise calculations based on the purity of gold.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for Lanthanum over a specified period. This information is critical for understanding market extremes and making strategic decisions.
- Open/High/Low/Close (OHLC) Price Endpoint: Access open, high, low, and close prices for Lanthanum, which are essential for technical analysis and trading strategies.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008. This endpoint is particularly useful for traders who need to analyze long-term trends.
- API Key: Your unique API key is required to access the Metals-API. This key ensures secure access to the API and is passed in the access_key parameter of the API base URL.
- API Response: The API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format, making it easy to integrate into applications.
- Available Endpoints: The Metals-API features 14 different endpoints, each designed to provide specific functionalities tailored to the needs of developers and businesses.
- Supported Symbols Endpoint: This endpoint returns a constantly updated list of all available currencies and metals, ensuring that developers have access to the latest information.
List of Symbols
The Metals-API provides access to a comprehensive range of metal symbols, including Lanthanum. 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, including Lanthanum. The response structure is designed to be intuitive and easy to parse:
{
"success": true,
"timestamp": 1780791082,
"base": "USD",
"date": "2026-06-07",
"rates": {
"LTH": 0.000482,
"XAU": 0.000482,
"XAG": 0.03815
},
"unit": "per troy ounce"
}
In this example, the response indicates that the current price of Lanthanum is 0.000482 per troy ounce, relative to USD.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999. This endpoint is crucial for analyzing past market behavior:
{
"success": true,
"timestamp": 1780704682,
"base": "USD",
"date": "2026-06-06",
"rates": {
"LTH": 0.000485,
"XAU": 0.000485,
"XAG": 0.03825
},
"unit": "per troy ounce"
}
Here, the historical rate for Lanthanum on June 6, 2026, is shown, allowing for comparative analysis with current rates.
Time-Series Endpoint
Get exchange rates for a specific time period, which is essential for trend analysis:
{
"success": true,
"timeseries": true,
"start_date": "2026-05-31",
"end_date": "2026-06-07",
"base": "USD",
"rates": {
"2026-05-31": {
"LTH": 0.000485
},
"2026-06-02": {
"LTH": 0.000483
},
"2026-06-07": {
"LTH": 0.000482
}
},
"unit": "per troy ounce"
}
This response provides a time series of Lanthanum prices, allowing developers to visualize trends over the specified period.
Convert Endpoint
Convert any amount from one metal to another or to/from USD:
{
"success": true,
"query": {
"from": "USD",
"to": "LTH",
"amount": 1000
},
"info": {
"timestamp": 1780791082,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This example shows how to convert 1000 USD to Lanthanum, resulting in 0.482 troy ounces.
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-05-31",
"end_date": "2026-06-07",
"base": "USD",
"rates": {
"LTH": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -0.000003,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
This response provides insights into how the price of Lanthanum has changed over the specified period, highlighting both the absolute and percentage changes.
OHLC (Open/High/Low/Close) Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1780791082,
"base": "USD",
"date": "2026-06-07",
"rates": {
"LTH": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
This endpoint is crucial for traders who rely on technical analysis to make informed decisions based on price movements.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1780791082,
"base": "USD",
"date": "2026-06-07",
"rates": {
"LTH": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 0.000002
}
},
"unit": "per troy ounce"
}
This response provides the bid and ask prices for Lanthanum, which are essential for traders looking to execute buy or sell orders effectively.
Conclusion
The Metals-API offers a comprehensive suite of tools for developers looking to access real-time and historical data on metals like Lanthanum. By leveraging this API, businesses can gain valuable insights into market trends, optimize their operations, and make informed decisions. The integration of advanced technology and data analytics into the metal markets is transforming how industries operate, and the Metals-API is at the forefront of this evolution.
For more information on how to implement the Metals-API in your applications, visit the Metals-API Documentation. To explore the full range of supported symbols, check out the Metals-API Supported Symbols page. With the right tools and data, the future of metal trading is bright, and the possibilities are endless.