Get Accurate Belize Dollar (BZD) Prices in Multiple Currencies Using REST API
Get Accurate Belize Dollar (BZD) Prices in Multiple Currencies Using REST API
In today's globalized economy, having access to accurate and real-time currency exchange rates is crucial for businesses and developers alike. The Metals-API provides a powerful solution for obtaining accurate Belize Dollar (BZD) prices in various currencies. This blog post will explore how the Metals-API can be utilized to access real-time and historical exchange rates, enabling developers to create innovative applications that leverage this data.
Metals-API Information
About Tellurium (TE)
As the world continues to evolve, the metal markets are undergoing a digital transformation. The integration of smart technology and data analytics is reshaping how businesses operate within these markets. Tellurium (TE), a lesser-known but significant metal, exemplifies this shift. With advancements in technology, the demand for Tellurium is expected to rise, particularly in the renewable energy sector, where it is used in solar panels and other applications.
Technological innovation is at the forefront of this transformation. The Metals-API empowers developers to harness real-time metals data, facilitating the creation of next-generation applications. By integrating data analytics and insights, businesses can make informed decisions based on accurate market trends and fluctuations.
API Description
The Metals-API is a comprehensive JSON API that provides real-time and historical data on metal prices and currency conversions. This API is designed to empower developers by offering a range of endpoints that deliver accurate and timely information. With the ability to access data on various metals, including gold, silver, platinum, and more, developers can build applications that cater to diverse business needs.
For detailed information on how to use the API, refer to the Metals-API Documentation. The documentation provides a thorough overview of the API's capabilities, including how to authenticate, manage requests, and handle responses.
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 various metals, updated based on your subscription plan. Depending on the plan, updates can occur every 60 minutes or even every 10 minutes.
- Historical Rates Endpoint: Access historical rates dating back to 2019. This feature allows users to query the API for specific dates, enabling businesses to analyze past trends and make informed decisions.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals, providing insights into market conditions and helping traders make strategic decisions.
- Convert Endpoint: This endpoint allows users to convert any amount from one currency to another, making it easy to handle transactions across different currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two dates, allowing for in-depth analysis of market trends over time.
- Fluctuation Endpoint: Track how currencies fluctuate on a day-to-day basis, providing valuable insights into market volatility.
- Carat Endpoint: Retrieve information about gold rates by carat, which is essential for jewelers and other businesses dealing with precious metals.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date, aiding in market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: Access open, high, low, and close prices for a specific date, which is crucial for traders looking to analyze price movements.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a long-term view of market trends.
- API Key: Your unique API key is required for authentication and is passed into the API base URL's access_key parameter.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency across data retrieval.
- Available Endpoints: The Metals-API features 14 endpoints, each offering distinct functionalities tailored to various business needs.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available currencies, ensuring users have access to the latest information.
- Intraday Endpoint: Query intraday exchange rate data for a single symbol, which is essential for high-frequency trading applications.
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": 1786320975,
"base": "USD",
"date": "2026-08-10",
"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": 1786234575,
"base": "USD",
"date": "2026-08-09",
"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-08-03",
"end_date": "2026-08-10",
"base": "USD",
"rates": {
"2026-08-03": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-08-05": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-08-10": {
"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": 1786320975,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-08-03",
"end_date": "2026-08-10",
"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": 1786320975,
"base": "USD",
"date": "2026-08-10",
"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": 1786320975,
"base": "USD",
"date": "2026-08-10",
"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 looking to access accurate Belize Dollar (BZD) prices in multiple currencies. With its extensive range of endpoints and features, the API empowers businesses to make data-driven decisions and stay ahead in the competitive market. By leveraging real-time and historical data, developers can create innovative applications that cater to various industries, from finance to e-commerce.
For more information on how to implement the Metals-API in your projects, visit the Metals-API Documentation and explore the Metals-API Supported Symbols for a comprehensive list of available currencies. Start building your next application today with the powerful capabilities of the Metals-API!