Access comprehensive Platinum Sep 2025 (PLU25) prices using this API
Access Comprehensive Platinum Sep 2025 (PLU25) Prices Using This API
In today's rapidly evolving financial landscape, having access to real-time data is crucial for developers and businesses alike. The Metals-API provides a powerful solution for accessing comprehensive Platinum (XPT) prices, including the upcoming Sep 2025 (PLU25) prices. This API not only offers real-time exchange rates but also historical data, making it an invaluable tool for those involved in the metals market.
About Platinum (XPT)
Platinum is a precious metal that plays a significant role in various industries, particularly in green technology applications and sustainable innovation. As the world shifts towards clean energy solutions, the demand for Platinum is expected to rise, driven by its use in catalytic converters, hydrogen fuel cells, and other smart technology integrations. The integration of digital transformation in the metals market allows for more efficient tracking and trading of Platinum, making it essential for developers to utilize APIs that provide accurate and timely data.
API Description
The Metals-API is designed to empower developers by providing real-time metals data, enabling the creation of next-generation applications. With its innovative capabilities, the API allows users to access a wealth of information about various metals, including Platinum. This API is particularly beneficial for financial analysts, traders, and developers looking to build applications that require up-to-date pricing and historical trends.
For detailed information on how to utilize the API, you can refer to the Metals-API Documentation. This resource provides comprehensive guidance on the various endpoints available, including how to authenticate and make requests.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs within the metals market. Each endpoint provides unique functionalities that can be leveraged for various applications:
- Latest Rates Endpoint: This endpoint returns real-time exchange rate data for Platinum and other metals. Depending on your subscription plan, updates can occur every 60 minutes or even more frequently. This feature is crucial for traders who need to make informed decisions based on the latest market conditions.
- Historical Rates Endpoint: Access historical rates dating back to 2019. By appending a specific date to your request, you can retrieve past pricing data, which is essential for trend analysis and forecasting.
- Bid And Ask Endpoint: This powerful feature allows users to retrieve real-time bid and ask prices for Platinum. Understanding the spread between these prices is vital for making trading decisions.
- Convert Endpoint: The API includes a currency conversion endpoint that enables users to convert amounts between different metals or to/from USD. This functionality is particularly useful for businesses that operate in multiple currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two specified dates. This endpoint is ideal for analyzing price movements over time and identifying patterns.
- Fluctuation Endpoint: Track how prices fluctuate on a day-to-day basis. This endpoint provides insights into market volatility, which can inform trading strategies.
- Carat Endpoint: Retrieve information about Gold rates by Carat. This feature is beneficial for jewelers and businesses that deal with precious metals in various forms.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for Platinum over a specified period. This information is crucial for understanding market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Access detailed OHLC data for a specific time period, which is essential for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, allowing for comprehensive market analysis.
- API Key: Your unique API key is required to access the API. This key must be included in your requests to authenticate your access.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data presentation.
- Available Endpoints: The Metals-API features 14 different endpoints, each designed to provide specific functionalities tailored to user needs.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies and metals supported by the API, ensuring you have the latest information at your fingertips.
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. This resource is essential for developers looking to integrate specific metals into their applications.
API Endpoint Examples and Responses
Understanding how to interpret API responses is crucial for effective integration. 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": 1779840693,
"base": "USD",
"date": "2026-05-27",
"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": 1779754293,
"base": "USD",
"date": "2026-05-26",
"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": "2026-05-20",
"end_date": "2026-05-27",
"base": "USD",
"rates": {
"2026-05-20": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-05-22": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-05-27": {
"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": 1779840693,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-05-20",
"end_date": "2026-05-27",
"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": 1779840693,
"base": "USD",
"date": "2026-05-27",
"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": 1779840693,
"base": "USD",
"date": "2026-05-27",
"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 essential tool for developers and businesses involved in the metals market, particularly for accessing comprehensive Platinum prices. With its wide range of endpoints, including real-time rates, historical data, and conversion capabilities, the API empowers users to make informed decisions based on accurate and timely information. By leveraging the capabilities of the Metals-API, developers can create innovative applications that meet the demands of a rapidly changing market.
For more information on how to get started with the Metals-API, visit the Metals-API Website and explore the Metals-API Documentation for detailed guidance on implementation. Don't forget to check the Metals-API Supported Symbols page to familiarize yourself with the available metal symbols.