The Easiest Way to Get LBMA Platinum Am (LBXPTAM) Historical Rates via API Integration

The Easiest Way to Get LBMA Platinum Am (LBXPTAM) Historical Rates via API Integration
In today's fast-paced financial landscape, having access to real-time and historical data is crucial for making informed decisions. For developers looking to integrate precious metals data into their applications, the Metals-API offers a robust solution. This blog post will guide you through the process of obtaining historical prices for Platinum (XPT) using the Metals-API, including example endpoints, parameters, and data formats. We will explore the innovative capabilities of this API, its potential applications in green technology, sustainable innovation, and clean energy solutions, and how it empowers developers to create next-generation applications.
About Platinum (XPT)
Platinum is a precious metal that plays a significant role in various industries, particularly in green technology applications. Its unique properties make it an essential component in catalytic converters, which help reduce harmful emissions from vehicles. As the world shifts towards sustainable innovation and clean energy solutions, the demand for Platinum is expected to rise. The integration of smart technology in industries further emphasizes the need for accurate and real-time data on Platinum prices. This is where the Metals-API comes into play, providing developers with the tools necessary to access and utilize this data effectively.
API Description
The Metals-API is a powerful tool that provides real-time and historical data for various metals, including Platinum. It allows developers to build applications that can track metal prices, perform currency conversions, and analyze market trends. With its user-friendly interface and comprehensive documentation, the Metals-API is designed to meet the needs of technically proficient developers looking to integrate metals data into their projects.
For more information, visit the Metals-API Website or check out the Metals-API Documentation for detailed guidance on using the API.
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 metals, updated every 60 minutes, 10 minutes, or even more frequently, depending on your subscription plan. It allows you to access the most current prices for Platinum and other metals.
- Historical Rates Endpoint: Access historical rates for most currencies dating back to 2019. You can query the API for historical rates by appending a specific date to the endpoint.
- Bid and Ask Endpoint: Retrieve real-time bid and ask prices for metals, which is essential for traders looking to make informed decisions based on current market conditions.
- Convert Endpoint: This feature allows you to convert any amount from one metal to another or to/from USD, making it easy to perform calculations based on current rates.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, enabling you to analyze trends over time.
- 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 useful for jewelers and consumers alike.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest price for a specific date, helping you identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Get OHLC data for a specific time period, which is crucial for technical analysis.
- 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 required to access the API, ensuring secure and authorized usage.
- API Response: The API delivers exchange rates relative to USD by default, 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.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you informed about market developments.
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
To illustrate the capabilities of the Metals-API, let's explore some example endpoints and their corresponding JSON responses.
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1760630456,
"base": "USD",
"date": "2025-10-16",
"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 price of Platinum (XPT) is 0.000912 per troy ounce, relative to USD.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999:
{
"success": true,
"timestamp": 1760544056,
"base": "USD",
"date": "2025-10-15",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This response shows the historical price of Platinum on October 15, 2025, as 0.000915 per troy ounce.
Time-Series Endpoint
Get exchange rates for a specific time period:
{
"success": true,
"timeseries": true,
"start_date": "2025-10-09",
"end_date": "2025-10-16",
"base": "USD",
"rates": {
"2025-10-09": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-10-11": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-10-16": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This response provides a time-series view of Platinum prices 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": 1760630456,
"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": "2025-10-09",
"end_date": "2025-10-16",
"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 Platinum prices fluctuated over the specified period, highlighting both the absolute change and the percentage change.
OHLC (Open/High/Low/Close) Price Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1760630456,
"base": "USD",
"date": "2025-10-16",
"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 Platinum on October 16, 2025, which is essential for traders performing technical analysis.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1760630456,
"base": "USD",
"date": "2025-10-16",
"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 Platinum, which is crucial for traders looking to execute buy or sell orders.
Conclusion
In conclusion, the Metals-API is an invaluable resource for developers seeking to integrate precious metals data into their applications. With its extensive range of endpoints, including the latest rates, historical rates, and fluctuation tracking, developers can access the information they need to make informed decisions. The API's capabilities extend beyond mere data retrieval; it empowers developers to create innovative solutions that leverage real-time metals data for various applications, from financial analysis to market forecasting.
By utilizing the Metals-API, developers can tap into the transformative potential of real-time data, enabling them to build next-generation applications that meet the demands of an ever-evolving market. For more information on how to get started, refer to the Metals-API Documentation and explore the Metals-API Supported Symbols to find the data you need.
As the world continues to embrace green technology and sustainable innovation, the importance of accurate and timely data will only grow. The Metals-API stands ready to support developers in this endeavor, providing the tools necessary to navigate the complexities of the metals market.