Retrieve LBMA Palladium Pm (LBXPDPM) Price Data for Historical Insights through this API
Retrieve LBMA Palladium Pm (LBXPDPM) Price Data for Historical Insights through this API
In the ever-evolving landscape of precious metals trading, having access to accurate and timely data is paramount. The Metals-API provides developers with the tools necessary to retrieve historical price data for metals like Palladium (XPD) and Gold (XAU). This blog post will delve into the capabilities of the Metals-API, focusing on how to effectively retrieve historical prices and leverage this data for insightful analysis.
About Palladium (XPD)
Palladium, a rare and precious metal, has gained significant traction in various industries, particularly in automotive technology innovation. Its unique properties make it an essential component in catalytic converters, which help reduce harmful emissions from vehicles. As the automotive industry shifts towards greener technologies, the demand for Palladium continues to rise, making it a critical metal for environmental solutions.
Furthermore, the integration of digital supply chains and smart manufacturing processes has transformed how Palladium is sourced and utilized. The ability to track and analyze Palladium prices in real-time through APIs like Metals-API empowers developers to create applications that can optimize supply chain management and enhance decision-making processes.
API Description
The Metals-API is a powerful tool that provides real-time and historical data for various metals, including Palladium and Gold. With its innovative approach to data delivery, the API enables developers to build next-generation applications that can analyze market trends, track price fluctuations, and facilitate currency conversions.
For detailed information on how to use the API, refer to the Metals-API Documentation. This resource outlines the various endpoints available, including the latest rates, historical rates, and conversion functionalities.
Key Features and Endpoints
The Metals-API offers a comprehensive suite of endpoints designed to cater to the diverse needs of developers. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated according to your subscription plan. Depending on the plan, updates can occur every 60 minutes or every 10 minutes, ensuring you have the most current data at your fingertips.
- Historical Rates Endpoint: Access historical rates dating back to 2019 by appending a specific date (YYYY-MM-DD) to the endpoint. This feature is invaluable for analyzing market trends over time.
- Bid and Ask Endpoint: Retrieve real-time bid and ask prices for metals, allowing traders to make informed decisions based on current market conditions.
- Convert Endpoint: This endpoint enables you to convert any amount from one metal to another or to/from USD, facilitating seamless transactions across different currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This is particularly useful for analyzing price trends over specific periods.
- Fluctuation Endpoint: Track how metal prices fluctuate on a day-to-day basis, providing insights into market volatility.
- Carat Endpoint: Retrieve information about Gold rates by carat, which is essential for jewelers and gold traders.
- Lowest/Highest Price Endpoint: Get the lowest and highest prices for a specified date, helping you identify market extremes.
- 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, allowing for extensive market analysis.
- API Key: Your unique API key is required to access the API, ensuring secure and authorized usage.
- 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 endpoints, each providing distinct functionalities to cater to various use cases.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies and metals.
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
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1780272746,
"base": "USD",
"date": "2026-06-01",
"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": 1780186346,
"base": "USD",
"date": "2026-05-31",
"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-05-25",
"end_date": "2026-06-01",
"base": "USD",
"rates": {
"2026-05-25": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-05-27": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-06-01": {
"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": 1780272746,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-05-25",
"end_date": "2026-06-01",
"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": 1780272746,
"base": "USD",
"date": "2026-06-01",
"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": 1780272746,
"base": "USD",
"date": "2026-06-01",
"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 offers a robust and versatile solution for developers looking to access real-time and historical price data for precious metals like Palladium and Gold. By leveraging the various endpoints available, developers can create applications that provide valuable insights into market trends, optimize trading strategies, and enhance decision-making processes.
For further exploration of the API's capabilities, visit the Metals-API Documentation and discover how to integrate these powerful tools into your applications. Additionally, the Metals-API Supported Symbols page provides a comprehensive list of all available metals and currencies, ensuring you have the data you need at your fingertips.
As the demand for accurate and timely metals data continues to grow, utilizing the Metals-API will position developers at the forefront of innovation in the precious metals market.