Fetch Bronze (BRONZE) Historical Prices using this Simple API Query

Fetch Bronze (BRONZE) Historical Prices using this Simple API Query
About Bronze (BRONZE)
API Description
Metals-API Website or check the Metals-API Documentation for detailed guidance on how to implement these features.
Key Features and Endpoints
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated at intervals depending on your subscription plan. For instance, users can access the latest rates for Bronze and other metals every 60 minutes or even every 10 minutes, depending on their needs.
- Historical Rates Endpoint: Users can access historical rates for Bronze dating back to 2019. By appending a specific date to the API query, developers can retrieve past prices, allowing for comprehensive analysis and trend identification.
- Bid And Ask Endpoint: This feature enables users to retrieve real-time bid and ask prices for Bronze, providing insights into market liquidity and pricing dynamics.
- Convert Endpoint: The API includes a currency conversion endpoint, allowing users to convert any amount from one metal to another or to/from USD. This is particularly useful for investors looking to assess the value of their holdings in different currencies.
- Time-Series Endpoint: This endpoint allows users to query the API for daily historical rates between two specified dates, facilitating in-depth analysis of price movements over time.
- Fluctuation Endpoint: Users can track how prices fluctuate between two dates, providing insights into market volatility and trends.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides detailed price data, including the opening, highest, lowest, and closing prices for Bronze over a specified period.
- Lowest/Highest Price Endpoint: Users can query the API to get the lowest and highest prices for Bronze on a specific date, which is crucial for understanding market extremes.
- Historical LME Endpoint: This endpoint provides access to historical rates for LME symbols, dating back to 2008, allowing for extensive historical analysis.
- API Key: Each user is assigned a unique API key, which must be included in the API requests to authenticate and authorize access.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data interpretation.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available metal symbols, including Bronze, making it easy for developers to find the data they need.
- News Endpoint: Users can retrieve the latest news articles related to various metals, keeping them informed about market developments.
API Endpoint Examples and Responses
Latest Rates Endpoint
{
"success": true,
"timestamp": 1753351216,
"base": "USD",
"date": "2025-07-24",
"rates": {
"BRONZE": 0.000482
},
"unit": "per troy ounce"
}
Historical Rates Endpoint
{
"success": true,
"timestamp": 1753264816,
"base": "USD",
"date": "2025-07-23",
"rates": {
"BRONZE": 0.000485
},
"unit": "per troy ounce"
}
Time-Series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-07-17",
"end_date": "2025-07-24",
"base": "USD",
"rates": {
"2025-07-17": {
"BRONZE": 0.000485
},
"2025-07-19": {
"BRONZE": 0.000483
},
"2025-07-24": {
"BRONZE": 0.000482
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "BRONZE",
"amount": 1000
},
"info": {
"timestamp": 1753351216,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-07-17",
"end_date": "2025-07-24",
"base": "USD",
"rates": {
"BRONZE": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
OHLC (Open/High/Low/Close) Endpoint
{
"success": true,
"timestamp": 1753351216,
"base": "USD",
"date": "2025-07-24",
"rates": {
"BRONZE": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
Bid/Ask Endpoint
{
"success": true,
"timestamp": 1753351216,
"base": "USD",
"date": "2025-07-24",
"rates": {
"BRONZE": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 2.0e-6
}
},
"unit": "per troy ounce"
}
Conclusion
Metals-API Supported Symbols page to familiarize yourself with the various metal symbols available. The more you understand the capabilities of the Metals-API, the better equipped you will be to harness its power for your projects.