Access FT Cboe Vest Gold Strategy Quarterly Buffer ETF (BGLD) Exchange Rates with User-Friendly API Documentation in JSON Format
Access FT Cboe Vest Gold Strategy Quarterly Buffer ETF (BGLD) Exchange Rates with User-Friendly API Documentation in JSON Format
In the ever-evolving landscape of financial technology, accessing real-time data on precious metals like gold is crucial for developers and traders alike. The Metals-API provides a robust solution for retrieving exchange rates for the FT Cboe Vest Gold Strategy Quarterly Buffer ETF (BGLD) in a user-friendly JSON format. This blog post will delve into the capabilities of the Metals-API, focusing on its innovative features, practical applications, and how it empowers developers to create next-generation applications that leverage real-time metals data.
Metals-API Information
About Gold (XAU)
Gold, represented by the symbol XAU, has long been a cornerstone of financial markets and a safe haven for investors. As digital transformation reshapes the trading landscape, the integration of data analytics and technology in precious metals trading becomes increasingly vital. The Metals-API stands at the forefront of this transformation, offering developers the tools to harness market insights and innovate in price discovery.
With the rise of digital asset solutions, the ability to access real-time gold rates and historical data through an API is invaluable. Developers can leverage this data to build applications that provide insights into market trends, optimize trading strategies, and enhance user experiences. The Metals-API not only facilitates access to gold rates but also empowers users to make informed decisions based on comprehensive market analytics.
API Description
The Metals-API is a powerful JSON API designed to provide real-time and historical data on precious metals. It enables developers to integrate metals pricing into their applications seamlessly. The API offers a variety of endpoints, each catering to different data needs, from the latest exchange rates to historical trends and price fluctuations.
For more information, visit the Metals-API Website or explore the Metals-API Documentation for detailed guidance on implementation.
Key Features and Endpoints
The Metals-API boasts 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 precious metals, updated every 60 minutes, 10 minutes, or even more frequently, depending on your subscription plan. This feature is essential for applications that require up-to-the-minute pricing information.
- Historical Rates Endpoint: Developers can access historical rates for most currencies dating back to 2019. By appending a specific date in the YYYY-MM-DD format, users can retrieve past exchange rates, enabling trend analysis and historical comparisons.
- Bid And Ask Endpoint: This powerful feature allows users to retrieve real-time bid and ask prices for various metals. Understanding the bid-ask spread is crucial for traders looking to optimize their entry and exit points.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint, allowing users to convert any amount from one metal to another or to/from USD. This functionality is particularly useful for applications that require multi-currency support.
- Time-Series Endpoint: This endpoint enables users to query daily historical rates between two specified dates. It is ideal for analyzing trends over time and understanding market movements.
- Fluctuation Endpoint: Users can track how currencies fluctuate on a day-to-day basis, providing insights into market volatility and helping traders make informed decisions.
- Carat Endpoint: This unique feature allows users to retrieve gold rates by carat, catering to jewelers and businesses that require precise pricing based on purity.
- Lowest/Highest Price Endpoint: Users 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 open, high, low, and close prices for a specific date, essential for technical analysis and trading strategies.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, allowing users to analyze long-term trends in the metals market.
- API Key: Each user is assigned a unique API key, which must be included in the API base URL's access_key parameter for authentication.
- API Response: The Metals-API delivers exchange rates relative to USD, with all data returned in a structured JSON format, making it easy to parse and integrate into applications.
- Available Endpoints: The Metals-API features 14 different endpoints, each providing unique functionalities tailored to various user needs.
- Supported Symbols Endpoint: This endpoint returns a constantly updated list of all available currencies, ensuring users have access to the latest information.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping users informed about market developments and trends.
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 the API responses is crucial for effective integration. Below are examples of various API endpoints along with their JSON responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1776553628,
"base": "USD",
"date": "2026-04-18",
"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": 1776467228,
"base": "USD",
"date": "2026-04-17",
"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-11",
"end_date": "2026-04-18",
"base": "USD",
"rates": {
"2026-04-11": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-04-13": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-04-18": {
"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": 1776553628,
"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-11",
"end_date": "2026-04-18",
"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": 1776553628,
"base": "USD",
"date": "2026-04-18",
"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": 1776553628,
"base": "USD",
"date": "2026-04-18",
"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 offers a comprehensive and innovative solution for accessing real-time and historical exchange rates for precious metals, including the FT Cboe Vest Gold Strategy Quarterly Buffer ETF (BGLD). With its user-friendly JSON format and extensive documentation, developers can easily integrate this powerful API into their applications, unlocking a wealth of data and insights.
By leveraging the various endpoints, such as the latest rates, historical rates, and fluctuation data, developers can create applications that provide valuable market insights and enhance trading strategies. The ability to convert currencies and track bid/ask prices further empowers users to make informed decisions in a dynamic market.
For more information on how to get started with the Metals-API, visit the Metals-API Documentation and explore the Metals-API Supported Symbols page for a complete list of available symbols. The future of trading in precious metals is here, and the Metals-API is your gateway to harnessing its full potential.