Retrieve Platinum Oct 2025 (PLV25) Historical Prices easily using this API

Retrieve Platinum Oct 2025 (PLV25) Historical Prices Easily Using This API
Metals-API, a powerful tool designed for developers looking to integrate metals data into their applications.
About Platinum (XPT)
Metals-API, developers can retrieve historical prices for Platinum, enabling them to analyze trends, make informed decisions, and build innovative applications that cater to the evolving market needs. This API empowers developers to harness the transformative potential of real-time metals data, facilitating the creation of next-generation applications that can adapt to market fluctuations.
API Description
Key Features and Endpoints
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for Platinum and other metals. Depending on your subscription plan, the API can return updates every 60 minutes, every 10 minutes, or even more frequently. This feature is essential for applications that require up-to-the-minute pricing information.
- Historical Rates Endpoint: Developers can access historical rates for Platinum dating back to 2019. By appending a specific date to the API request, users can retrieve historical prices, which is invaluable for trend analysis and forecasting.
- Bid And Ask Endpoint: This powerful feature allows developers to retrieve real-time bid and ask prices for Platinum. Understanding the bid-ask spread is crucial for traders and investors looking to make informed decisions.
- Convert Endpoint: The Metals-API includes a currency conversion feature that enables users to convert amounts from one metal to another or to/from USD. This is particularly useful for applications that require multi-metal transactions.
- Time-Series Endpoint: This endpoint allows developers to query the API for daily historical rates between two specified dates. This feature is beneficial for analyzing price movements over time.
- Fluctuation Endpoint: Users can track how Platinum prices fluctuate over a specified period. This endpoint provides insights into market volatility, helping developers create applications that can respond to price changes.
- Carat Endpoint: This feature allows developers to retrieve information about Gold rates by carat, which can be useful for applications focused on jewelry and precious metal trading.
- Lowest/Highest Price Endpoint: This endpoint enables users to query the API for the lowest and highest prices of Platinum over a specified period, providing valuable insights into market trends.
- Open/High/Low/Close (OHLC) Price Endpoint: Developers can access detailed OHLC data for Platinum, which is essential for technical analysis and trading strategies.
- Historical LME Endpoint: This endpoint provides access to historical rates for LME symbols dating back to 2008, allowing for comprehensive market analysis.
- API Key: Each user is assigned a unique API key, which must be included in API requests to authenticate access. This ensures secure and controlled access to the API's features.
- API Response: The Metals-API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format, making it easy for developers to parse and utilize the information.
- Available Endpoints: The API provides a constantly updated list of all available endpoints, ensuring that developers can easily find the functionality they need.
- Supported Symbols Endpoint: This endpoint returns a comprehensive list of all supported metal symbols, allowing developers to quickly identify the metals they can work with.
- Gold Price India Endpoint: For those interested in the Indian market, this endpoint retrieves the latest gold prices in India, providing localized data for specific applications.
- News Endpoint: The Metals-API includes a news feature that allows users to retrieve the latest articles related to various metals, keeping developers informed about market trends and developments.
API Endpoint Examples and Responses
Latest Rates Endpoint
{
"success": true,
"timestamp": 1753740017,
"base": "USD",
"date": "2025-07-28",
"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
{
"success": true,
"timestamp": 1753653617,
"base": "USD",
"date": "2025-07-27",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
Time-Series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-07-21",
"end_date": "2025-07-28",
"base": "USD",
"rates": {
"2025-07-21": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-07-23": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-07-28": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1753740017,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-07-21",
"end_date": "2025-07-28",
"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
{
"success": true,
"timestamp": 1753740017,
"base": "USD",
"date": "2025-07-28",
"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
{
"success": true,
"timestamp": 1753740017,
"base": "USD",
"date": "2025-07-28",
"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
Metals-API Documentation and explore the Metals-API Supported Symbols to find the metal symbols you need. With the right tools and data at your disposal, you can unlock the full potential of precious metals in your applications.