Fetch Platinum Jul 2026 (PLN26) pricing information using this API

Introduction
In the ever-evolving landscape of precious metals trading, staying updated with real-time pricing information is crucial for investors and developers alike. This blog post delves into the intricacies of fetching Platinum (XPT) pricing information using the Metals-API. We will explore the significance of Platinum in various markets, its applications in green technology, and how the Metals-API empowers developers to create innovative applications that leverage real-time metals data.
Metals-API Information
About Platinum (XPT)
Platinum, denoted by the symbol XPT, is a precious metal known for its rarity and unique properties. It plays a pivotal role in various industries, particularly in green technology applications. As the world shifts towards sustainable innovation and clean energy solutions, Platinum has emerged as a key player in catalytic converters for vehicles, hydrogen fuel cells, and other smart technology integrations.
In the realm of digital transformation, Platinum's applications extend beyond traditional uses. Its role in the production of electronics and medical devices highlights its importance in modern technological advancements. The demand for Platinum is not only driven by its industrial applications but also by its investment potential, making it a valuable asset for traders and investors.
API Description
The Metals-API is a powerful tool designed to provide developers with real-time and historical pricing data for various metals, including Platinum. This API enables seamless integration of metals pricing into applications, allowing for enhanced decision-making and market analysis. With its robust capabilities, the Metals-API empowers developers to build next-generation applications that can analyze trends, forecast prices, and provide insights into the metals market.
One of the standout features of the Metals-API is its ability to deliver real-time exchange rate data. Depending on the subscription plan, users can access updated rates every 60 minutes or even every 10 minutes. This level of granularity is essential for traders who rely on timely information to make informed decisions.
Key Features and Endpoints
The Metals-API offers a variety of endpoints, each designed to cater to specific needs within the metals trading ecosystem. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for all available metals, including Platinum. Users can retrieve the latest rates and make informed trading decisions based on up-to-date information.
- Historical Rates Endpoint: For those interested in analyzing past trends, the historical rates endpoint allows users to access exchange rates dating back to 2019. By appending a specific date, developers can query the API for historical data, enabling comprehensive market analysis.
- Bid And Ask Endpoint: This feature provides real-time bid and ask prices for metals, allowing traders to gauge market sentiment and make strategic decisions based on current market conditions.
- Convert Endpoint: The conversion feature enables users to convert any amount from one metal to another or to/from USD. This is particularly useful for traders who operate in multiple currencies.
- Time-Series Endpoint: Developers can query the API for daily historical rates between two dates of their choice, facilitating in-depth analysis of price movements over time.
- Fluctuation Endpoint: This endpoint allows users to track how metals fluctuate on a day-to-day basis, providing insights into market volatility and helping traders make informed decisions.
- Carat Endpoint: For those dealing with gold, this endpoint retrieves information about gold rates by carat, catering to jewelers and investors in the gold market.
- Lowest/Highest Price Endpoint: Users can query the API to get the lowest and highest prices for a specific date, which is essential for understanding market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific date, allowing traders to analyze market performance comprehensively.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, which is invaluable for long-term market analysis.
- API Key: The API requires an API key for authentication, ensuring secure access to the data.
- API Response: The exchange rates delivered by the Metals-API are relative to USD, with all data returned in a structured JSON format.
- Available Endpoints: The Metals-API includes 14 endpoints, each providing unique functionalities tailored to the needs of traders and developers.
- Supported Symbols Endpoint: This endpoint returns all available currencies and metals, ensuring users have access to the most current information.
- Gold Price India Endpoint: Retrieve the latest gold price in India using this dedicated endpoint, catering to regional market needs.
- News Endpoint: Stay updated with the latest news articles related to various metals, providing context and insights into market movements.
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 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": 1759305633,
"base": "USD",
"date": "2025-10-01",
"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": 1759219233,
"base": "USD",
"date": "2025-09-30",
"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-09-24",
"end_date": "2025-10-01",
"base": "USD",
"rates": {
"2025-09-24": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-09-26": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-10-01": {
"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": 1759305633,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2025-09-24",
"end_date": "2025-10-01",
"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": 1759305633,
"base": "USD",
"date": "2025-10-01",
"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": 1759305633,
"base": "USD",
"date": "2025-10-01",
"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
In conclusion, the Metals-API provides a comprehensive solution for accessing real-time and historical pricing data for Platinum and other precious metals. Its extensive range of endpoints allows developers to create innovative applications that can analyze market trends, convert currencies, and track fluctuations effectively. By leveraging the power of the Metals-API, developers can enhance their applications with valuable insights that drive informed decision-making in the metals market.
For more information on how to integrate the Metals-API into your applications, visit the Metals-API Documentation. Explore the full list of supported symbols at the Metals-API Supported Symbols page, and stay updated with the latest trends in the metals market through the Metals-API Website.