Retrieve Bahamian Dollar (BSD) exchange rates with this API
Introduction
The Bahamian Dollar (BSD) is a vital currency in the Caribbean, particularly for trade and tourism in the Bahamas. As the global economy becomes increasingly interconnected, the need for accurate and real-time exchange rate data has never been more critical. This is where the Metals-API comes into play. This API provides developers with the tools necessary to retrieve Bahamian Dollar exchange rates and other metal prices, empowering them to create innovative applications that can transform how we interact with financial data.
Understanding the Metals-API
The Metals-API is a powerful tool designed to deliver real-time and historical data on metal prices and currency exchange rates. It is particularly useful for developers looking to integrate financial data into their applications. The API offers a range of endpoints that allow users to access the latest rates, historical data, and even perform conversions between different currencies, including the Bahamian Dollar.
About Tellurium (TE)
Tellurium, a rare metalloid, is gaining traction in various industries due to its unique properties. As digital transformation sweeps through metal markets, Tellurium is at the forefront of technological innovation. The integration of smart technology and data analytics is revolutionizing how we understand and utilize metals like Tellurium. Developers can leverage the Metals-API to gain insights into market trends and fluctuations, enabling them to make informed decisions.
API Description
The Metals-API is designed to provide developers with a comprehensive suite of features that facilitate the retrieval of real-time and historical metal prices. By utilizing advanced data analytics and smart technology integration, the API empowers developers to build next-generation applications that can analyze market trends, track price fluctuations, and convert currencies seamlessly. The API's capabilities extend beyond mere data retrieval; it offers transformative potential for businesses looking to innovate in the financial sector.
For more detailed information, developers can refer to the Metals-API Documentation, which outlines the various endpoints and their functionalities.
Key Features and Endpoints
The Metals-API boasts 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, updated every 60 minutes, 10 minutes, or even more frequently, depending on the subscription plan. Developers can easily access the latest Bahamian Dollar rates against various metals.
- Historical Rates Endpoint: Users can access historical rates dating back to 2019 by appending a specific date to the API request. This feature is invaluable for analyzing long-term trends and making informed investment decisions.
- Bid and Ask Endpoint: This powerful feature allows developers to retrieve real-time bid and ask prices for metals, providing insights into market liquidity and pricing strategies.
- Convert Endpoint: The API includes a dedicated currency conversion endpoint, enabling users to convert any amount from one currency to another, including conversions involving the Bahamian Dollar.
- Time-Series Endpoint: This endpoint allows developers 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 currencies fluctuate on a day-to-day basis, providing insights into market volatility and trends.
- Carat Endpoint: This feature allows users to retrieve information about gold rates by carat, which is essential for jewelers and investors in precious metals.
- Lowest/Highest Price Endpoint: Developers can query the API to get the lowest and highest prices for a specified date, aiding in market analysis and decision-making.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides detailed OHLC data for a specific time period, allowing for comprehensive market analysis.
- Historical LME Endpoint: Users can access historical rates for LME symbols dating back to 2008, which is crucial for those involved in trading and investment.
- 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 Metals-API delivers exchange rates relative to USD by default, ensuring consistency and reliability in the data provided.
- Available Endpoints: The API features 14 different endpoints, each designed to provide specific functionalities tailored to user needs.
- Supported Symbols Endpoint: This constantly updated endpoint returns all available currencies and metals, allowing developers to stay informed about the latest offerings.
- News Endpoint: Users can retrieve the latest news articles related to various metals, keeping them updated on market 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
Understanding how to interpret the API responses is crucial for effective implementation. Below are examples of various endpoints and their corresponding JSON responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1777162124,
"base": "USD",
"date": "2026-04-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": 1777075724,
"base": "USD",
"date": "2026-04-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-04-19",
"end_date": "2026-04-26",
"base": "USD",
"rates": {
"2026-04-19": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-04-21": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-04-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": 1777162124,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-04-19",
"end_date": "2026-04-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": 1777162124,
"base": "USD",
"date": "2026-04-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": 1777162124,
"base": "USD",
"date": "2026-04-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
The Metals-API is an invaluable resource for developers seeking to integrate real-time and historical exchange rate data, including the Bahamian Dollar, into their applications. With its extensive range of endpoints, the API empowers users to analyze market trends, track price fluctuations, and perform currency conversions with ease. By leveraging the capabilities of the Metals-API, developers can create innovative solutions that enhance financial decision-making and drive business growth.
For further exploration of the API's features, developers are encouraged to visit the Metals-API Documentation and familiarize themselves with the Metals-API Supported Symbols. The potential applications of this API are vast, and with the right implementation strategies, developers can unlock new opportunities in the financial landscape.