Get Uranium Sep 2025 (UXU25) - Per Pound Historical Prices using this API

Introduction
In the ever-evolving landscape of metal markets, the ability to access real-time and historical data is crucial for informed decision-making. One such metal that has garnered attention is Uranium, specifically the Uranium Sep 2025 (UXU25) contract. Understanding the historical prices of Uranium per pound can provide valuable insights for investors, traders, and analysts alike. In this blog post, we will explore how to obtain historical prices using the Metals-API, a powerful tool designed for seamless integration of metal pricing data into applications.
Metals-API Information
About Uranium (UXU25)
Uranium is a critical element in the energy sector, primarily used as fuel for nuclear reactors. The demand for Uranium is influenced by various factors, including energy policies, technological advancements, and market dynamics. As the world shifts towards cleaner energy sources, understanding the historical pricing trends of Uranium becomes essential for stakeholders in the energy market.
The digital transformation in metal markets has led to the emergence of innovative technologies that facilitate real-time data access and analytics. With the integration of smart technologies and data analytics, stakeholders can gain insights into market trends, price fluctuations, and investment opportunities. The future of Uranium pricing will likely be shaped by advancements in technology and data-driven decision-making.
API Description
The Metals-API is a robust platform that provides developers with access to real-time and historical metal pricing data. This API empowers developers to build next-generation applications that can leverage real-time data for various use cases, including trading platforms, market analysis tools, and financial applications.
With a focus on innovation and technological advancement, the Metals-API offers a suite of features that enable users to access the latest rates, historical data, and various analytical tools. The API is designed to be user-friendly, allowing developers to integrate it seamlessly into their applications.
Key Features and Endpoints
The Metals-API provides a comprehensive set of endpoints that cater to different data needs. Here are some of the key features:
- Latest Rates Endpoint: This endpoint returns real-time exchange rate data for metals, updated based on your subscription plan. Depending on the plan, updates can occur every 60 minutes or every 10 minutes.
- Historical Rates Endpoint: Access historical rates dating back to 2019. This endpoint allows users to query historical prices by appending a specific date to the API request.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals, providing insights into market liquidity and pricing dynamics.
- Convert Endpoint: This feature allows users to convert amounts from one metal to another or to/from USD, facilitating easy calculations for traders and analysts.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, enabling users to analyze trends over specific periods.
- Fluctuation Endpoint: Track how metal prices fluctuate on a day-to-day basis, providing insights into market volatility.
- Carat Endpoint: Retrieve information about gold rates by carat, useful for jewelers and investors in the gold market.
- Lowest/Highest Price Endpoint: 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: Obtain OHLC data for a specific time period, essential for technical analysis.
- Historical LME Endpoint: 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.
- API Response: The API delivers exchange rates relative to USD, ensuring consistency in data interpretation.
- Available Endpoints: The Metals-API offers 14 different endpoints, each designed for specific functionalities.
- Supported Symbols Endpoint: Access a constantly updated list of all available metal symbols.
- Gold Price India Endpoint: Retrieve the latest gold price in India using a dedicated endpoint.
- News Endpoint: Get the latest news articles related to various metals, keeping users informed about market developments.
List of Symbols
The Metals-API provides access to a wide range of metal symbols, including but not limited to:
- XAU - Gold
- XAG - Silver
- XPT - Platinum
- XPD - Palladium
- UXU25 - Uranium Sep 2025
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 effective data retrieval. Below are examples of various endpoints and their responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1759302045,
"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"
}
This response indicates the success of the request, the timestamp of the data, the base currency (USD), the date of the rates, and the rates for various metals.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999:
{
"success": true,
"timestamp": 1759215645,
"base": "USD",
"date": "2025-09-30",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This response provides historical rates for a specified date, allowing users to analyze past pricing trends.
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"
}
This response allows users to track price changes over a defined period, which is essential for trend analysis.
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": 1759302045,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This response shows how much a specified amount in USD converts to in terms of troy ounces of gold, providing a straightforward way to assess value.
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"
}
This response provides insights into how prices have changed over a specific period, which is vital for understanding market volatility.
OHLC (Open/High/Low/Close) Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1759302045,
"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"
}
This response provides a comprehensive view of price movements within a specific timeframe, essential for traders conducting technical analysis.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1759302045,
"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"
}
This response provides critical information for traders, allowing them to assess market conditions and make informed trading decisions.
Conclusion
Accessing historical prices for Uranium Sep 2025 (UXU25) is made simple and efficient through the Metals-API. By leveraging the various endpoints available, developers can create applications that provide real-time insights, historical data analysis, and comprehensive market analytics. The integration of smart technology and data analytics in the metal markets is paving the way for a more informed trading environment.
For those looking to dive deeper into the world of metal pricing, the Metals-API Documentation offers extensive resources and examples to help you get started. Additionally, the Metals-API Supported Symbols page provides a complete list of available metal symbols, ensuring you have the information you need at your fingertips.
As the market continues to evolve, staying informed and utilizing advanced tools like the Metals-API will be essential for anyone involved in the metal trading space. Embrace the future of metal markets with real-time data and analytics at your disposal.