How to retrieve Uranium Aug 2025 (UXQ25) prices using this API

Introduction
Metals-API. We will explore the capabilities of this API, its various endpoints, and how it can empower developers to create innovative applications that leverage real-time metals data.
Understanding Uranium and Its Markets
Metals-API Information
About Uranium (UXQ25)
API Description
- Latest Rates: Access real-time exchange rate data for uranium and other metals.
- Historical Rates: Retrieve historical pricing data dating back to 2019.
- Bid and Ask Prices: Get real-time bid and ask prices for uranium.
- Conversion: Convert amounts between different metals and currencies.
- Time-Series Data: Analyze historical rates over specific time periods.
- Fluctuation Data: Track daily fluctuations in uranium prices.
Metals-API Documentation.
Key Features and Endpoints
Latest Rates Endpoint
{
"success": true,
"timestamp": 1753671621,
"base": "USD",
"date": "2025-07-28",
"rates": {
"UXQ25": 0.000482
},
"unit": "per troy ounce"
}
Historical Rates Endpoint
{
"success": true,
"timestamp": 1753585221,
"base": "USD",
"date": "2025-07-27",
"rates": {
"UXQ25": 0.000485
},
"unit": "per troy ounce"
}
Bid and Ask Endpoint
{
"success": true,
"timestamp": 1753671621,
"base": "USD",
"date": "2025-07-28",
"rates": {
"UXQ25": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 2.0e-6
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "UXQ25",
"amount": 1000
},
"info": {
"timestamp": 1753671621,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Time-Series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-07-21",
"end_date": "2025-07-28",
"base": "USD",
"rates": {
"2025-07-21": {
"UXQ25": 0.000485
},
"2025-07-28": {
"UXQ25": 0.000482
}
},
"unit": "per troy ounce"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-07-21",
"end_date": "2025-07-28",
"base": "USD",
"rates": {
"UXQ25": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
Open/High/Low/Close (OHLC) Price Endpoint
{
"success": true,
"timestamp": 1753671621,
"base": "USD",
"date": "2025-07-28",
"rates": {
"UXQ25": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
Common Use Cases and Integration Strategies
- Real-Time Trading Applications: Developers can create applications that provide real-time pricing information, enabling traders to make quick decisions based on the latest market data.
- Market Analysis Tools: By leveraging historical rates and time-series data, developers can build tools that analyze trends and provide insights into future price movements.
- Portfolio Management: The API can be integrated into portfolio management systems to track the performance of uranium investments and provide alerts for significant price changes.
Conclusion
Metals-API Website and explore the Metals-API Supported Symbols for a comprehensive list of available metals. The Metals-API Documentation provides detailed guidance on how to effectively utilize the API for your specific needs.