Fetch Palladium Bid (XPD-BID) prices with this API
Introduction
In the rapidly evolving landscape of precious metals trading, the ability to access real-time data is paramount. The Metals-API provides developers with a powerful tool to fetch Palladium Bid (XPD-BID) prices and other metal rates, enabling innovative applications that can transform how businesses operate in the automotive, environmental, and manufacturing sectors. This blog post delves into the capabilities of the Metals-API, exploring its features, endpoints, and the transformative potential of real-time metals data.
About Palladium (XPD)
Palladium, represented by the symbol XPD, is a precious metal that has gained significant traction in recent years, particularly in the automotive industry. As a key component in catalytic converters, Palladium plays a crucial role in reducing harmful emissions from vehicles. The demand for Palladium has surged due to the increasing focus on environmental solutions and automotive technology innovation. With the rise of electric vehicles and stringent emission regulations, Palladium's role is evolving, making it essential for developers and businesses to stay updated on its market dynamics.
Moreover, the integration of digital supply chains and smart manufacturing practices is reshaping how Palladium is sourced and utilized. The Metals-API empowers developers to harness real-time data, enabling them to create applications that can optimize supply chains, enhance manufacturing processes, and contribute to sustainability efforts.
API Description
The Metals-API is a comprehensive JSON API that provides access to real-time and historical data for various metals, including Palladium. With its robust capabilities, the API allows developers to build next-generation applications that can leverage real-time metals data for various use cases, from financial analysis to supply chain management.
One of the standout features of the Metals-API is its ability to deliver data at different intervals based on subscription plans. Developers can access the latest rates, historical data, and even bid and ask prices, making it a versatile tool for any application requiring metals data. The API's documentation, available at Metals-API Documentation, provides detailed guidance on how to implement these features effectively.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different 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 that you have the most current information at your fingertips.
- Historical Rates Endpoint: Access historical rates dating back to 2019. This feature is invaluable for analyzing trends and making informed decisions based on past performance.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for Palladium, allowing for precise trading strategies and market analysis.
- Convert Endpoint: Easily convert any amount from one metal to another or to/from USD, facilitating seamless transactions and calculations.
- Time-Series Endpoint: Query daily historical rates between two dates of your choice, providing insights into market fluctuations over time.
- Fluctuation Endpoint: Track how Palladium prices fluctuate on a day-to-day basis, helping to identify trends and make strategic decisions.
- Carat Endpoint: Retrieve information about Gold rates by Carat, which can be useful for businesses dealing in jewelry and precious metals.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest price of Palladium within a specified timeframe, aiding in market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: Access detailed OHLC data for Palladium, which is essential for traders looking to analyze price movements.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a comprehensive view of market trends.
- API Key: Your unique API key is essential for accessing the API and must be included in your requests.
- API Response: The API delivers exchange rates relative to USD, with all data returned in a structured JSON format.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies and metals supported by the API.
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
Understanding the API responses is crucial for effective implementation. Below are examples of various endpoints and their corresponding JSON responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1781827801,
"base": "USD",
"date": "2026-06-19",
"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 indicates that the current rate for Palladium (XPD) is 0.000744 per troy ounce, relative to USD.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999.
{
"success": true,
"timestamp": 1781741401,
"base": "USD",
"date": "2026-06-18",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This response shows the historical rate for Palladium on June 18, 2026, which was 0.000748 per troy ounce.
Time-series Endpoint
Get exchange rates for a specific time period.
{
"success": true,
"timeseries": true,
"start_date": "2026-06-12",
"end_date": "2026-06-19",
"base": "USD",
"rates": {
"2026-06-12": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-06-14": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-06-19": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This response provides a time series of rates for Palladium over 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": 1781827801,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This response indicates that converting 1000 USD results in 0.482 troy ounces of Gold (XAU).
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-06-12",
"end_date": "2026-06-19",
"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 Palladium and other metals fluctuated over the specified period, highlighting both the absolute change and percentage change.
OHLC (Open/High/Low/Close) Endpoint
Get OHLC data for a specific time period.
{
"success": true,
"timestamp": 1781827801,
"base": "USD",
"date": "2026-06-19",
"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 response provides the open, high, low, and close prices for Palladium, which is essential for traders analyzing market movements.
Bid/Ask Endpoint
Get current bid and ask prices for metals.
{
"success": true,
"timestamp": 1781827801,
"base": "USD",
"date": "2026-06-19",
"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 current bid and ask prices for Palladium, which is crucial for traders looking to make informed decisions.
Conclusion
The Metals-API is an invaluable resource for developers and businesses looking to leverage real-time data for Palladium and other metals. By providing access to a wide range of endpoints, including the latest rates, historical data, and bid/ask prices, the API empowers users to build innovative applications that can optimize supply chains, enhance manufacturing processes, and contribute to sustainability efforts.
As the demand for Palladium continues to rise, staying informed about market trends and fluctuations is essential. The Metals-API not only facilitates this access but also enables developers to create solutions that can adapt to the ever-changing landscape of precious metals trading. For more information on how to implement the Metals-API, refer to the Metals-API Documentation and explore the Metals-API Supported Symbols for a comprehensive list of available metals.