Access Latest Palladium Ask (XPD-ASK) Historical Prices using this API
Access Latest Palladium Ask (XPD-ASK) Historical Prices using this API
In the world of precious metals, palladium (XPD) has emerged as a critical player, especially in automotive technology innovation and environmental solutions. As industries evolve, the demand for real-time data on palladium prices becomes increasingly vital. This is where the Metals-API comes into play, providing developers with the tools necessary to access the latest palladium ask prices and historical data seamlessly.
About Palladium (XPD)
Palladium is a rare and precious metal that has gained significant traction in various sectors, particularly in automotive technology. 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 crucial for developers and businesses to stay updated on its market prices.
Moreover, palladium plays a pivotal role in environmental solutions, contributing to cleaner air and reduced pollution. The integration of digital supply chains and smart manufacturing processes further enhances the efficiency of palladium usage, allowing for better tracking and management of resources. The technological advancements in this field underscore the importance of having access to real-time metals data, which can be achieved through the Metals-API.
API Description
The Metals-API is designed to empower developers by providing real-time and historical data on various metals, including palladium. This API enables the creation of next-generation applications that can leverage accurate and timely information to make informed decisions. With its robust capabilities, the Metals-API transforms how businesses interact with metals data, allowing for innovative solutions in various industries.
One of the standout features of the Metals-API is its ability to deliver real-time exchange rate data, updated at intervals depending on the subscription plan. This ensures that users have access to the most current information, which is essential for making timely trading decisions. Additionally, the API offers historical rates dating back to 2019, allowing users to analyze trends and make predictions based on past performance.
Key Features and Endpoints
The Metals-API comes equipped with several powerful endpoints that cater to a variety of needs. 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, updates can occur every 60 minutes or even every 10 minutes, ensuring you have the latest information at your fingertips.
- Historical Rates Endpoint: Access historical rates for palladium dating back to 2019. By appending a specific date in the format YYYY-MM-DD, you can retrieve past prices and analyze market trends over time.
- Bid And Ask Endpoint: This feature allows you to retrieve real-time bid and ask prices for palladium. Understanding the spread between these prices can help you make more informed trading decisions.
- Convert Endpoint: The Metals-API includes a currency conversion feature, enabling you to convert any amount from one metal to another 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 dates of your choice. This feature is invaluable for trend analysis and forecasting.
- Fluctuation Endpoint: Track how palladium prices fluctuate on a day-to-day basis. This endpoint provides insights into market volatility and can help you identify patterns.
- Carat Endpoint: Retrieve information about gold rates by carat, which can be useful for businesses dealing with jewelry and precious metals.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for palladium over a specified period, allowing you to assess market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for palladium, giving you a comprehensive view of market performance.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, which is essential for businesses involved in trading and investment.
- API Key: Your unique API key is required to access the Metals-API. This key must be included in the API base URL's access_key parameter to authenticate your requests.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in your data analysis.
- Available Endpoints: The Metals-API features 14 different endpoints, each providing unique functionalities tailored to various user needs.
- Supported Symbols Endpoint: This endpoint returns a constantly updated list of all available currencies and metals, ensuring you have access to the latest symbols.
List of Symbols
The Metals-API provides access to a comprehensive range of metal symbols, including palladium (XPD). 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": 1779581652,
"base": "USD",
"date": "2026-05-24",
"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": 1779495252,
"base": "USD",
"date": "2026-05-23",
"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-17",
"end_date": "2026-05-24",
"base": "USD",
"rates": {
"2026-05-17": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-05-19": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-05-24": {
"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": 1779581652,
"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-17",
"end_date": "2026-05-24",
"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": 1779581652,
"base": "USD",
"date": "2026-05-24",
"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": 1779581652,
"base": "USD",
"date": "2026-05-24",
"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
Accessing the latest palladium ask prices and historical data is crucial for businesses and developers operating in the precious metals market. The Metals-API offers a comprehensive suite of features that empower users to make informed decisions based on real-time data. From the latest rates to historical trends, the API provides a wealth of information that can be leveraged for various applications.
By utilizing the Metals-API, developers can create innovative solutions that enhance the efficiency of trading and investment in palladium and other metals. The ability to access detailed historical data, track fluctuations, and convert between different metals and currencies opens up a world of possibilities for businesses looking to optimize their operations.
For more information on how to implement these features, refer to the Metals-API Documentation and explore the Metals-API Supported Symbols page for a complete list of available metals. With the right tools and data at your disposal, you can navigate the complexities of the precious metals market with confidence.