How to fetch Uranium Dec 2025 (UXZ25) prices using this API

Introduction
In the ever-evolving landscape of financial markets, the ability to access real-time data is crucial for traders and developers alike. One such asset that has garnered attention is Uranium, particularly the December 2025 futures contract, denoted as UXZ25. In this blog post, we will explore how to fetch Uranium prices using the Metals-API, a powerful tool that provides comprehensive data on various metals, including Uranium. We will delve into the API's capabilities, its endpoints, and how it can empower developers to create innovative applications in the metal markets.
Metals-API Information
About Uranium (UXZ25)
Uranium is a critical element in the energy sector, primarily used as fuel in nuclear reactors. As the world shifts towards cleaner energy sources, the demand for Uranium is expected to rise. The digital transformation in metal markets has opened new avenues for trading and investment in Uranium. With technological innovations and advancements in data analytics, traders can now access real-time insights and make informed decisions.
The integration of smart technology in trading platforms has revolutionized how investors approach the Uranium market. By leveraging data analytics, traders can identify trends, assess risks, and optimize their strategies. The future of Uranium trading lies in the ability to harness real-time data and analytics, enabling a more dynamic and responsive trading environment.
API Description
The Metals-API is designed to provide developers with real-time and historical data on various metals, including Uranium. This API empowers users to build next-generation applications that can analyze market trends, perform currency conversions, and access historical data. With its robust capabilities, the Metals-API is a game-changer for anyone involved in the metal markets.
One of the standout features of the Metals-API is its ability to deliver real-time exchange rate data. Depending on your subscription plan, the API can provide updates every 60 minutes, every 10 minutes, or even more frequently. This ensures that traders have access to the most current information, allowing them to make timely decisions.
Additionally, the API offers a range of endpoints that cater to various needs, from fetching the latest rates to accessing historical data dating back to 2019. The flexibility of the Metals-API makes it an invaluable resource for developers looking to integrate metal pricing data into their applications.
Key Features and Endpoints
The Metals-API boasts a variety of endpoints, each designed to serve specific functions. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated based on your subscription plan. For example, a user can retrieve the latest price of Uranium in USD.
- Historical Rates Endpoint: Users can access historical rates for most metals dating back to 2019. By appending a specific date to the API request, developers can analyze past market trends.
- Bid And Ask Endpoint: This feature allows users to retrieve real-time bid and ask prices for metals, providing insights into market liquidity and pricing.
- Convert Endpoint: The API includes a currency conversion feature that enables users to convert amounts from one metal to another or to/from USD, facilitating seamless transactions.
- Time-Series Endpoint: This endpoint allows users to query for daily historical rates between two specified dates, enabling trend analysis over time.
- Fluctuation Endpoint: Users can track how metal prices fluctuate on a day-to-day basis, providing insights into market volatility.
- Carat Endpoint: This feature allows users to retrieve information about Gold rates by Carat, which can be useful for jewelers and investors.
- Lowest/Highest Price Endpoint: Users can query the API to get the lowest and highest prices for a specified date, aiding in market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific time period, essential for technical analysis.
- Historical LME Endpoint: Users can access historical rates for LME symbols dating back to 2008, providing a comprehensive view of market trends.
- API Key: Each user is assigned a unique API key that must be included in requests to authenticate access to the API.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data presentation.
- Available Endpoints: The Metals-API includes 14 endpoints, each offering different functionalities to cater to diverse user needs.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available currencies and metals supported by the API.
- Gold Price India Endpoint: Users can retrieve the latest gold price in India using a dedicated endpoint, which is particularly useful for local investors.
- News Endpoint: This feature allows users to access the latest news articles related to various metals, keeping them informed about market developments.
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 how to interact with the Metals-API is crucial for developers. Below are examples of various API endpoints and their corresponding responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1759712434,
"base": "USD",
"date": "2025-10-06",
"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": 1759626034,
"base": "USD",
"date": "2025-10-05",
"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-29",
"end_date": "2025-10-06",
"base": "USD",
"rates": {
"2025-09-29": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-10-01": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-10-06": {
"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": 1759712434,
"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-29",
"end_date": "2025-10-06",
"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": 1759712434,
"base": "USD",
"date": "2025-10-06",
"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": 1759712434,
"base": "USD",
"date": "2025-10-06",
"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 a powerful tool for developers looking to access real-time and historical data on metals, including Uranium. With its extensive range of endpoints and capabilities, the API enables users to build innovative applications that can analyze market trends, perform currency conversions, and access vital information for trading decisions. By leveraging the API's features, developers can create solutions that enhance trading strategies and provide valuable insights into the metal markets.
For more information on how to get started with the Metals-API, refer to the Metals-API Documentation. To explore the full list of supported symbols, visit the Metals-API Supported Symbols page. The future of trading in metals, including Uranium, is bright, and with the right tools, developers can harness the power of real-time data to stay ahead in the market.