Access Bismuth (BMTH) Historical Prices through this API for Market Research

Access Bismuth (BMTH) Historical Prices through this API for Market Research
In the rapidly evolving landscape of metal markets, the ability to access historical prices for metals like Bismuth (BMTH) is crucial for market research and analysis. With the advent of APIs, developers can now harness the power of real-time data to gain insights and make informed decisions. One such powerful tool is the Metals-API, which provides comprehensive access to historical prices and various functionalities that can transform how we interact with metal market data.
Metals-API Information
About Bismuth (BMTH)
Bismuth, represented by the symbol BMTH, is a unique metal that has gained attention in various industries due to its low toxicity and high density. As the world moves towards digital transformation, the metal markets are also evolving, driven by technological innovations and advancements. The integration of smart technology and data analytics is reshaping how traders, investors, and researchers access and interpret market data.
With the rise of data analytics, stakeholders can now derive insights from historical price trends, enabling them to forecast future movements. The Metals-API plays a pivotal role in this transformation, offering developers the tools to build applications that leverage real-time and historical data for Bismuth and other metals.
API Description
The Metals-API is a robust platform that provides developers with access to a wide array of functionalities related to metal prices. This API empowers users to build next-generation applications that can analyze market trends, perform currency conversions, and retrieve historical data with ease. The transformative potential of real-time metals data cannot be overstated, as it allows for more informed decision-making and strategic planning.
For detailed information on how to implement the API, developers can refer to the Metals-API Documentation, which provides comprehensive guidance on usage, endpoints, and best practices.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs. 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. Depending on the plan, updates can occur every 60 minutes or even every 10 minutes, ensuring that you have the most current data at your fingertips.
- Historical Rates Endpoint: Users can access historical rates for most metals dating back to 2019. By appending a specific date to the API call, developers can retrieve historical price data, which is essential for market analysis and research.
- Bid And Ask Endpoint: This feature allows users to retrieve real-time bid and ask prices for metals. Understanding the bid-ask spread is crucial for traders looking to make informed buying and selling decisions.
- Convert Endpoint: The API includes a currency conversion endpoint, enabling users to convert amounts between different metals or to/from USD. This is particularly useful for traders dealing with multiple currencies.
- Time-Series Endpoint: This endpoint allows users to query the API for daily historical rates between two specified dates. This feature is invaluable for analyzing trends over time.
- Fluctuation Endpoint: Users can track how metal prices fluctuate on a day-to-day basis. This endpoint provides insights into market volatility, helping traders make better decisions.
- Carat Endpoint: For those interested in gold, this endpoint retrieves information about gold rates by carat, allowing for precise calculations in jewelry and investment.
- Lowest/Highest Price Endpoint: This endpoint enables users to query the API for the lowest and highest prices of metals over a specified period, providing insights into market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Users can access OHLC data for specific time periods, which is essential for technical analysis and trading strategies.
- Historical LME Endpoint: This endpoint provides access to historical rates for LME symbols dating back to 2008, offering a wealth of data for comprehensive market analysis.
- API Key: Each user is assigned a unique API key that must be included in requests to authenticate and authorize access to the API.
- API Response: The API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format.
- Available Endpoints: The Metals-API features multiple endpoints, each designed to provide specific functionalities, ensuring that developers have the tools they need for their applications.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available metal symbols, allowing users to stay informed about the metals they can query.
- Gold Price India Endpoint: This dedicated endpoint retrieves the latest gold price in India, catering to a specific market segment.
- News Endpoint: Users can access the latest news articles related to various metals, keeping them informed about market trends and 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
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1750172528,
"base": "USD",
"date": "2025-06-17",
"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": 1750086128,
"base": "USD",
"date": "2025-06-16",
"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-06-10",
"end_date": "2025-06-17",
"base": "USD",
"rates": {
"2025-06-10": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-06-12": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-06-17": {
"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": 1750172528,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2025-06-10",
"end_date": "2025-06-17",
"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": 1750172528,
"base": "USD",
"date": "2025-06-17",
"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": 1750172528,
"base": "USD",
"date": "2025-06-17",
"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
Accessing historical prices for Bismuth (BMTH) through the Metals-API is a game-changer for market researchers and developers alike. The API's extensive features, including real-time rates, historical data, and various endpoints, empower users to build sophisticated applications that can analyze market trends and make data-driven decisions. By leveraging the capabilities of the Metals-API, developers can stay ahead in the competitive landscape of metal markets.
For more information on how to get started, visit the Metals-API Documentation and explore the Metals-API Supported Symbols page for a complete list of available metals. The future of metal market analysis is here, and with the right tools, the possibilities are endless.