Fetch Platinum Sep 2025 (PLU25) price data using this API

Introduction
In the ever-evolving landscape of financial technology, accessing real-time data is crucial for developers and businesses alike. One such valuable asset is the Platinum (XPT) price data, which can be seamlessly fetched using the Metals-API. This blog post delves into the intricacies of Platinum, its markets, and how the Metals-API empowers developers to harness real-time metals data for innovative applications.
Metals-API Information
About Platinum (XPT)
Platinum is a precious metal that plays a pivotal role in various industries, particularly in green technology applications and sustainable innovation. Its unique properties make it an essential component in catalytic converters, which are crucial for reducing harmful emissions in vehicles. As the world shifts towards clean energy solutions, the demand for Platinum is expected to rise, driven by its applications in hydrogen fuel cells and other renewable energy technologies.
Moreover, the digital transformation of industries has led to an increased integration of smart technologies, where Platinum's durability and resistance to corrosion make it an ideal choice for high-performance electronics. As developers and businesses look to innovate, understanding the market dynamics of Platinum becomes essential, and this is where the Metals-API comes into play.
API Description
The Metals-API is a powerful tool designed to provide developers with real-time and historical data on various metals, including Platinum. This API stands out due to its innovative capabilities, allowing users to build next-generation applications that require accurate and timely metals data.
With the Metals-API, developers can access a plethora of features that enhance their applications. The API supports multiple endpoints, each tailored to specific needs, such as retrieving the latest rates, historical data, and even performing conversions between different metals and currencies. This flexibility empowers developers to create applications that can adapt to the dynamic nature of the metals market.
Key Features and Endpoints
The Metals-API offers several key features that cater to the diverse needs of developers:
- Latest Rates Endpoint: Depending on your subscription plan, this endpoint provides real-time exchange rate data for metals, updated every 60 minutes or more frequently. For instance, querying the latest rates for Platinum (XPT) will yield current market prices, allowing businesses to make informed decisions.
- Historical Rates Endpoint: Access historical rates dating back to 2019. This endpoint is invaluable for analyzing market trends and making predictions based on past performance. By appending a specific date to the API call, users can retrieve historical data for Platinum and other metals.
- Bid and Ask Endpoint: This feature allows users to retrieve real-time bid and ask prices for Platinum, providing insights into market liquidity and pricing strategies.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint, enabling users to convert amounts between different metals or to/from USD. This is particularly useful for businesses operating in multiple currencies.
- Time-Series Endpoint: Users can query daily historical rates between two chosen dates, facilitating in-depth analysis of price movements over time.
- Fluctuation Endpoint: This endpoint provides information on how Platinum prices fluctuate on a day-to-day basis, helping developers track volatility and market trends.
- Carat Endpoint: For those interested in gold rates by carat, this endpoint allows users to retrieve relevant data easily.
- Lowest/Highest Price Endpoint: Users can query the API to find the lowest and highest prices for Platinum over a specified period, aiding in market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for Platinum, essential for traders and analysts.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, which is crucial for understanding long-term market trends.
- API Key: Each user is assigned a unique API key, which must be included in API requests to authenticate access.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data interpretation.
- Available Endpoints: The Metals-API offers a comprehensive list of endpoints, each designed to provide specific functionalities.
- Supported Symbols Endpoint: This endpoint returns all available currencies and metals, ensuring users can access the latest symbols.
- Gold Price India Endpoint: Retrieve the latest gold price in India, showcasing the API's versatility.
- News Endpoint: Stay updated with the latest news articles related to various metals, enhancing market awareness.
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's response structure is crucial for effective implementation. Below are examples of various endpoints and their JSON responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1756188036,
"base": "USD",
"date": "2025-08-26",
"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": 1756101636,
"base": "USD",
"date": "2025-08-25",
"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-08-19",
"end_date": "2025-08-26",
"base": "USD",
"rates": {
"2025-08-19": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-08-21": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-08-26": {
"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": 1756188036,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2025-08-19",
"end_date": "2025-08-26",
"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) Price Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1756188036,
"base": "USD",
"date": "2025-08-26",
"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": 1756188036,
"base": "USD",
"date": "2025-08-26",
"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
The Metals-API is an invaluable resource for developers looking to integrate real-time Platinum price data into their applications. By leveraging the various endpoints available, developers can create sophisticated tools that analyze market trends, track fluctuations, and provide insights into the precious metals market.
As industries continue to innovate and embrace sustainable practices, the demand for Platinum will only increase. Understanding how to effectively utilize the Metals-API will empower developers to stay ahead of the curve, creating applications that not only meet current market needs but also anticipate future trends.
For more information on how to get started with the Metals-API, visit the Metals-API Documentation and explore the extensive capabilities of this powerful tool. Whether you are interested in real-time data, historical analysis, or market news, the Metals-API has you covered.