Download LBMA Platinum Pm (LBXPTPM) Historical Prices from this API

In the world of precious metals, Platinum (symbol: XPT) stands out not only for its rarity but also for its diverse applications in various industries. As a developer or analyst interested in tracking the historical prices of Platinum, you can leverage the power of the Metals-API. This API provides real-time and historical data on various metals, including Platinum, enabling you to build applications that can analyze trends, forecast prices, and make informed decisions.
About Platinum (XPT)
Platinum is a highly sought-after precious metal known for its unique properties and applications. It plays a crucial role in green technology, sustainable innovation, and clean energy solutions. For instance, Platinum is used in catalytic converters in vehicles, which help reduce harmful emissions, making it a key player in the transition to cleaner transportation. Additionally, its resistance to corrosion and high melting point make it ideal for various industrial applications, including electronics and chemical processing.
As the world moves towards digital transformation, the integration of smart technologies in industries is becoming increasingly important. Platinum's role in these technologies, particularly in sensors and data storage devices, highlights its significance in the modern economy. By utilizing the Metals-API, developers can access real-time data on Platinum prices, allowing for innovative applications that can adapt to market changes swiftly.
Metals-API Overview
The Metals-API is a powerful tool designed for developers looking to integrate metals pricing data into their applications. It offers a range of endpoints that provide access to real-time and historical data, making it an invaluable resource for financial analysts, traders, and developers. The API is designed to be user-friendly, with comprehensive documentation available at Metals-API Documentation.
Key Features of Metals-API
The Metals-API provides various endpoints that cater to different needs, including:
- Latest Rates Endpoint: This endpoint returns real-time exchange rate data for metals, updated based on your subscription plan. Depending on your plan, you can receive updates every 60 minutes or every 10 minutes.
- Historical Rates Endpoint: Access historical rates for most metals dating back to 2019. You can query this endpoint by appending a specific date to retrieve past prices.
- Bid and Ask Endpoint: This feature allows you to retrieve real-time bid and ask prices for metals, providing insights into market conditions.
- Convert Endpoint: Easily convert amounts between different metals or to/from USD, facilitating seamless transactions.
- Time-Series Endpoint: Query daily historical rates between two dates, enabling trend analysis over specific periods.
- Fluctuation Endpoint: Track how metal prices fluctuate on a day-to-day basis, which is crucial for understanding 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: Access detailed OHLC data for a specific time period, which is vital for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a long-term view of market trends.
- API Key: Your unique API key is required for authentication and is passed into the API base URL's access_key parameter.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data interpretation.
- Available Endpoints: The API includes 14 endpoints, each offering distinct functionalities tailored to various user needs.
- Supported Symbols Endpoint: This endpoint returns a constantly updated list of all available metals and their specifications.
- Gold Price India Endpoint: Retrieve the latest gold prices in India, catering to regional market needs.
- News Endpoint: Access the latest news articles related to various metals, keeping you informed about market developments.
API Endpoint Examples and Responses
Understanding how to interact with the Metals-API is crucial for effective implementation. Here are some examples of API responses for various endpoints:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1760230951,
"base": "USD",
"date": "2025-10-12",
"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": 1760144551,
"base": "USD",
"date": "2025-10-11",
"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": "2025-10-05",
"end_date": "2025-10-12",
"base": "USD",
"rates": {
"2025-10-05": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-10-07": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-10-12": {
"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": 1760230951,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2025-10-05",
"end_date": "2025-10-12",
"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": 1760230951,
"base": "USD",
"date": "2025-10-12",
"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": 1760230951,
"base": "USD",
"date": "2025-10-12",
"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"
}
Common Use Cases for Metals-API
The versatility of the Metals-API allows for a variety of applications across different sectors:
Financial Analysis
Financial analysts can utilize the API to track historical price trends of Platinum and other metals. By analyzing this data, they can make informed predictions about future price movements, which is essential for investment strategies.
Market Research
Researchers and market analysts can leverage the API to gather data for reports and studies on market trends, demand fluctuations, and price volatility. This information is crucial for understanding market dynamics and making strategic decisions.
Trading Applications
Developers can create trading applications that utilize real-time and historical data from the Metals-API. By integrating this data, traders can execute trades based on accurate market information, enhancing their trading strategies.
Educational Tools
Educators and trainers can use the API to develop educational tools that teach students about the metals market, pricing strategies, and investment principles. By providing real-time data, these tools can offer practical insights into the financial world.
Conclusion
In summary, the Metals-API is an essential resource for anyone looking to access real-time and historical data on Platinum and other metals. Its comprehensive range of endpoints allows developers to create innovative applications that can analyze trends, track prices, and make informed decisions. Whether you are a financial analyst, trader, or researcher, the Metals-API provides the tools you need to succeed in the dynamic world of precious metals.
For more information on how to get started, visit the Metals-API Documentation and explore the Metals-API Supported Symbols page to discover all available metal symbols. With the right tools and data, you can unlock the full potential of the metals market.