Access LBMA Palladium Pm (LBXPDPM) Daily Historical Prices via this API
Access LBMA Palladium Pm (LBXPDPM) Daily Historical Prices via this API
In today's fast-paced financial landscape, having access to real-time and historical data is crucial for informed decision-making. The Metals-API provides developers with the tools necessary to access LBMA Palladium PM (LBXPDPM) daily historical prices, along with a wealth of other metals data. This blog post will delve into the capabilities of the Metals-API, focusing on Palladium (XPD) and how developers can leverage this API to enhance their applications.
About Palladium (XPD)
Palladium is a precious metal that has gained significant attention in recent years, primarily due to its critical role in automotive technology innovation. As the automotive industry shifts towards greener technologies, Palladium is increasingly used in catalytic converters to reduce harmful emissions. This shift not only highlights the metal's importance in environmental solutions but also underscores the need for accurate pricing data to inform investment and production decisions.
Moreover, the integration of Palladium into digital supply chains and smart manufacturing processes is transforming how industries operate. The demand for real-time data on Palladium prices is paramount, as it allows manufacturers and investors to make timely decisions based on market fluctuations. The Metals-API stands at the forefront of this technological advancement, offering developers the ability to build next-generation applications that utilize real-time metals data.
API Description
The Metals-API is a powerful tool that provides developers with access to real-time and historical prices for various metals, including Palladium. With its user-friendly interface and comprehensive documentation, developers can easily integrate this API into their applications. The API empowers users to access a wide range of functionalities, including retrieving the latest rates, historical data, and even performing currency conversions.
For more detailed information, you can visit the Metals-API Documentation. This resource provides in-depth guidance on how to utilize the API effectively, including examples and best practices.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs. Each endpoint is designed to provide specific functionalities that can be leveraged in various applications. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for Palladium and other metals. Depending on your subscription plan, the API can return updates every 60 minutes, every 10 minutes, or even more frequently. This feature is essential for applications that require up-to-the-minute pricing information.
- Historical Rates Endpoint: Developers can access historical rates for Palladium dating back to 2019. By appending a specific date to the API request, users can retrieve past pricing data, which is invaluable for trend analysis and forecasting.
- Bid And Ask Endpoint: This feature allows users to retrieve real-time bid and ask prices for Palladium. Understanding the bid-ask spread is crucial for traders and investors looking to make informed decisions based on market conditions.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint, enabling users to convert amounts from one metal to another or to/from USD. This functionality is particularly useful for applications that require multi-currency support.
- Time-Series Endpoint: This endpoint allows users to query daily historical rates between two chosen dates. It is ideal for applications that need to analyze price movements over specific periods.
- Fluctuation Endpoint: Users can track how Palladium prices fluctuate over time using this endpoint. It provides insights into daily changes, helping developers build applications that monitor market volatility.
- Carat Endpoint: This feature allows users to retrieve information about Gold rates by carat, providing additional context for those interested in precious metals.
- Lowest/Highest Price Endpoint: Developers can query the API to get the lowest and highest prices for Palladium over a specified period, which is essential for understanding market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides detailed OHLC data for Palladium, allowing users to analyze price movements comprehensively.
- Historical LME Endpoint: For those interested in LME symbols, this endpoint provides historical rates dating back to 2008, offering a broader context for market analysis.
- API Key: To access the API, users must include their unique API key in the request. This key is essential for authentication and ensuring secure access to the data.
- API Response: The Metals-API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format.
- Available Endpoints: The API includes 14 different endpoints, each offering unique functionalities tailored to various user needs.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available currencies and metals, ensuring users have access to the latest information.
For a complete list of supported symbols, refer to the Metals-API Supported Symbols page.
API Endpoint Examples and Responses
Understanding how to interpret API responses is crucial for developers. Below are examples of various API endpoints and their respective responses:
Latest Rates Endpoint
{
"success": true,
"timestamp": 1779236283,
"base": "USD",
"date": "2026-05-20",
"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 indicates a successful request, providing the latest rates for various metals, including Palladium (XPD). The "rates" object contains the current price per troy ounce, which is essential for real-time trading applications.
Historical Rates Endpoint
{
"success": true,
"timestamp": 1779149883,
"base": "USD",
"date": "2026-05-19",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This response shows historical rates for a specific date, allowing developers to analyze past pricing trends. The "rates" object again provides the price per troy ounce for Palladium and other metals.
Time-series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2026-05-13",
"end_date": "2026-05-20",
"base": "USD",
"rates": {
"2026-05-13": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-05-15": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-05-20": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
The time-series response provides daily rates for a specified period, enabling developers to visualize trends and fluctuations in Palladium prices over time.
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1779236283,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This response illustrates the conversion of an amount from USD to Palladium (XAU). The "result" field indicates the equivalent amount in troy ounces, which is crucial for applications that require currency conversion.
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2026-05-13",
"end_date": "2026-05-20",
"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 response provides insights into how prices have changed over a specified period. The "change" and "change_pct" fields are particularly useful for traders looking to gauge market volatility.
OHLC (Open/High/Low/Close) Endpoint
{
"success": true,
"timestamp": 1779236283,
"base": "USD",
"date": "2026-05-20",
"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 provides detailed OHLC data, which is essential for technical analysis. Understanding the open, high, low, and close prices allows traders to make informed decisions based on market trends.
Bid/Ask Endpoint
{
"success": true,
"timestamp": 1779236283,
"base": "USD",
"date": "2026-05-20",
"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 response provides crucial information for traders, including the current bid and ask prices for Palladium. The "spread" indicates the difference between the bid and ask prices, which is vital for assessing market liquidity.
Conclusion
In conclusion, the Metals-API offers a comprehensive suite of tools for developers looking to access real-time and historical prices for Palladium and other metals. With features such as the latest rates, historical data, and various conversion options, this API empowers users to build innovative applications that leverage metals data effectively.
By understanding the capabilities of the Metals-API and how to interpret its responses, developers can create applications that provide valuable insights into market trends and pricing fluctuations. For more information, visit the Metals-API Website and explore the extensive documentation available.
As the demand for accurate metals data continues to grow, leveraging APIs like Metals-API will be crucial for developers aiming to stay ahead in the competitive financial landscape.