Access Bermudian Dollar (BMD) prices using this API
Access Bermudian Dollar (BMD) Prices Using This API
The world of finance is rapidly evolving, and the integration of technology into metal markets is transforming how we access and analyze data. One of the key players in this transformation is the Bermudian Dollar (BMD), which is gaining traction in the global market. In this blog post, we will explore the capabilities of the Metals-API, a powerful tool that allows developers to access real-time and historical data on various metals, including the Bermudian Dollar. We will delve into the API's features, endpoints, and how it can empower developers to create innovative applications.
About Bermudian Dollar (BMD)
The Bermudian Dollar (BMD) is the official currency of Bermuda, pegged to the US dollar at par. As a small island economy, Bermuda's financial sector is heavily influenced by tourism and international business. The digital transformation in metal markets has opened new avenues for the BMD, allowing it to be integrated into various financial applications and services. The technological advancements in data analytics and insights have made it easier for developers to access real-time data, enabling smarter decision-making.
With the rise of smart technology integration, the future of the Bermudian Dollar looks promising. As developers leverage APIs like Metals-API, they can create applications that provide users with up-to-date information on metal prices, including those related to the BMD. This innovation not only enhances user experience but also contributes to the overall efficiency of financial markets.
API Description
The Metals-API is a robust API designed to provide real-time and historical data on metal prices. It empowers developers to build next-generation applications that require accurate and timely information. The API offers a variety of endpoints that cater to different needs, from fetching the latest rates to accessing historical data and performing conversions.
One of the standout features of the Metals-API is its ability to deliver data in a structured JSON format, making it easy for developers to parse and utilize the information in their applications. The API is designed with innovation in mind, allowing for seamless integration with existing systems and applications.
Key Features and Endpoints
The Metals-API offers a comprehensive suite of features that cater to various use cases. Here are some of the key endpoints and their functionalities:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated based on your subscription plan. Developers can access the latest rates for various metals, including Gold (XAU), Silver (XAG), Platinum (XPT), and Palladium (XPD).
- Historical Rates Endpoint: Users can access historical rates dating back to 2019. By appending a specific date to the API request, developers can retrieve past exchange rates, which is essential for trend analysis and forecasting.
- Bid And Ask Endpoint: This feature allows developers to retrieve real-time bid and ask prices for metals, providing insights into market dynamics and helping users make informed trading decisions.
- Convert Endpoint: The conversion endpoint enables users to convert amounts between different metals or to/from USD, facilitating seamless transactions and calculations.
- Time-Series Endpoint: Developers can query the API for daily historical rates between two specified dates, allowing for in-depth analysis of price movements over time.
- Fluctuation Endpoint: This endpoint provides information about how metal prices fluctuate on a day-to-day basis, helping users understand market volatility.
- Carat Endpoint: Users can retrieve information about Gold rates by Carat, which is particularly useful for jewelers and consumers interested in gold jewelry.
- Lowest/Highest Price Endpoint: This feature allows users to query the API for the lowest and highest prices of metals over a specified period, aiding in investment decisions.
- Open/High/Low/Close (OHLC) Price Endpoint: Developers can access OHLC data for specific time periods, providing a comprehensive view of price movements.
- Historical LME Endpoint: This endpoint provides access to historical rates for LME symbols dating back to 2008, which is crucial for those involved in trading on the London Metal Exchange.
- 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, ensuring consistency and ease of understanding.
- Available Endpoints: The Metals-API features 14 different endpoints, each designed to provide specific functionalities tailored to user needs.
- Supported Symbols Endpoint: This endpoint returns a constantly updated list of all available currencies and metals, ensuring developers have access to the latest information.
- News Endpoint: Users can retrieve 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. This resource is invaluable for developers looking to integrate specific metals into their applications.
API Endpoint Examples and Responses
Understanding the API's response structure is crucial for effective integration. Below are examples of responses from various endpoints:
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1772064488,
"base": "USD",
"date": "2026-02-26",
"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": 1771978088,
"base": "USD",
"date": "2026-02-25",
"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": "2026-02-19",
"end_date": "2026-02-26",
"base": "USD",
"rates": {
"2026-02-19": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-02-21": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-02-26": {
"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": 1772064488,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-02-19",
"end_date": "2026-02-26",
"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": 1772064488,
"base": "USD",
"date": "2026-02-26",
"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": 1772064488,
"base": "USD",
"date": "2026-02-26",
"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
In conclusion, the Metals-API serves as a vital resource for developers looking to access real-time and historical data on metals, including the Bermudian Dollar (BMD). Its extensive features and endpoints provide a comprehensive toolkit for building innovative applications that can analyze market trends, perform conversions, and track fluctuations. By leveraging this API, developers can create solutions that enhance user experience and contribute to the efficiency of financial markets.
For more information on how to implement the Metals-API in your projects, refer to the Metals-API Documentation. Explore the potential of the Metals-API Supported Symbols to find the right metals for your applications. Embrace the future of finance with the transformative capabilities of the Metals-API.