Fetch Franklin Responsibly Sourced Gold ETF (FGDL) price information via this API
 
                                Introduction
The Fetch Franklin Responsibly Sourced Gold ETF (FGDL) represents a significant advancement in the investment landscape, particularly for those interested in precious metals like gold. In this blog post, we will delve into the intricacies of the gold market, explore the transformative potential of the Metals-API, and discuss how developers can leverage this powerful tool to access real-time gold price information and other valuable data.
Metals-API Information
About Gold (XAU)
Gold, represented by the symbol XAU, has been a cornerstone of wealth preservation and investment for centuries. In recent years, the digital transformation in precious metals has reshaped how investors interact with this valuable asset. The integration of technology in trading has led to innovative approaches in price discovery and market insights. With the rise of digital asset solutions, investors can now access gold data in real-time, enabling them to make informed decisions based on current market conditions.
Data analytics plays a crucial role in understanding market trends and fluctuations. By harnessing the power of advanced analytics, traders can gain insights into price movements, historical trends, and potential future performance. This data-driven approach allows for more strategic investment decisions, minimizing risks associated with market volatility.
API Description
The Metals-API is a robust tool designed to provide developers with real-time and historical data on precious metals, including gold. This API empowers developers to build next-generation applications that require accurate and timely metals data. With its innovative capabilities, the Metals-API enables seamless integration into various platforms, enhancing user experience and operational efficiency.
For more information, visit the Metals-API Website and explore the Metals-API Documentation for detailed guidance on implementation.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different data needs. Each endpoint provides unique functionalities that can be leveraged for various applications. Here are some of the key features:
Latest Rates Endpoint
The Latest Rates Endpoint is a powerful feature that provides real-time exchange rate data for precious metals. Depending on your subscription plan, this endpoint can return updates every 60 minutes, every 10 minutes, or even more frequently. This allows developers to integrate live pricing into their applications, ensuring users always have access to the most current information.
{
    "success": true,
    "timestamp": 1761876032,
    "base": "USD",
    "date": "2025-10-31",
    "rates": {
        "XAU": 0.000482,
        "XAG": 0.03815,
        "XPT": 0.000912,
        "XPD": 0.000744
    },
    "unit": "per troy ounce"
}Historical Rates Endpoint
For those interested in analyzing trends over time, the Historical Rates Endpoint provides access to historical exchange rates dating back to 2019. By appending a specific date to the API request, developers can retrieve past rates, enabling them to conduct thorough analyses and backtesting of trading strategies.
{
    "success": true,
    "timestamp": 1761789632,
    "base": "USD",
    "date": "2025-10-30",
    "rates": {
        "XAU": 0.000485,
        "XAG": 0.03825,
        "XPT": 0.000915
    },
    "unit": "per troy ounce"
}Bid And Ask Endpoint
The Bid and Ask Endpoint is essential for traders looking to understand market dynamics. This feature allows users to retrieve real-time bid and ask prices for various metals, providing insights into market liquidity and pricing strategies.
{
    "success": true,
    "timestamp": 1761876032,
    "base": "USD",
    "date": "2025-10-31",
    "rates": {
        "XAU": {
            "bid": 0.000481,
            "ask": 0.000483,
            "spread": 2.0e-6
        },
        "XAG": {
            "bid": 0.0381,
            "ask": 0.0382,
            "spread": 0.0001
        }
    },
    "unit": "per troy ounce"
}Convert Endpoint
The Convert Endpoint is a versatile feature that enables users to convert any amount from one metal to another or to/from USD. This functionality is particularly useful for traders who operate in multiple currencies and need to quickly assess the value of their holdings.
{
    "success": true,
    "query": {
        "from": "USD",
        "to": "XAU",
        "amount": 1000
    },
    "info": {
        "timestamp": 1761876032,
        "rate": 0.000482
    },
    "result": 0.482,
    "unit": "troy ounces"
}Time-Series Endpoint
The Time-Series Endpoint allows developers to query the API for daily historical rates between two specified dates. This feature is invaluable for conducting trend analyses and understanding price movements over time.
{
    "success": true,
    "timeseries": true,
    "start_date": "2025-10-24",
    "end_date": "2025-10-31",
    "base": "USD",
    "rates": {
        "2025-10-24": {
            "XAU": 0.000485,
            "XAG": 0.03825
        },
        "2025-10-31": {
            "XAU": 0.000482,
            "XAG": 0.03815
        }
    },
    "unit": "per troy ounce"
}Fluctuation Endpoint
Using the Fluctuation Endpoint, developers can track how metal prices fluctuate between two dates. This feature provides insights into market volatility and helps traders make informed decisions based on historical price changes.
{
    "success": true,
    "fluctuation": true,
    "start_date": "2025-10-24",
    "end_date": "2025-10-31",
    "base": "USD",
    "rates": {
        "XAU": {
            "start_rate": 0.000485,
            "end_rate": 0.000482,
            "change": -3.0e-6,
            "change_pct": -0.62
        }
    },
    "unit": "per troy ounce"
}Open/High/Low/Close (OHLC) Price Endpoint
The OHLC Price Endpoint provides essential data for traders looking to analyze market performance over a specific time period. This endpoint returns the open, high, low, and close prices for metals, allowing for comprehensive market analysis.
{
    "success": true,
    "timestamp": 1761876032,
    "base": "USD",
    "date": "2025-10-31",
    "rates": {
        "XAU": {
            "open": 0.000485,
            "high": 0.000487,
            "low": 0.000481,
            "close": 0.000482
        }
    },
    "unit": "per troy ounce"
}Lowest/Highest Price Endpoint
The Lowest/Highest Price Endpoint allows users to query the API for the lowest and highest prices of metals over a specified date range. This feature is particularly useful for identifying price extremes and making strategic trading decisions.
{
    "success": true,
    "timestamp": 1761876032,
    "base": "USD",
    "date": "2025-10-31",
    "rates": {
        "XAU": {
            "lowest": 0.000481,
            "highest": 0.000487
        }
    },
    "unit": "per troy ounce"
}Historical LME Endpoint
The Historical LME Endpoint provides access to historical rates for LME symbols dating back to 2008. This endpoint is crucial for those analyzing long-term trends in the metals market.
{
    "success": true,
    "timestamp": 1761876032,
    "base": "USD",
    "date": "2025-10-31",
    "rates": {
        "XAU": 0.000482
    },
    "unit": "per troy ounce"
}API Key and Response
To access the Metals-API, users must include their unique API Key in the request. This key is essential for authentication and authorization, ensuring that only authorized users can access the data. The API response is delivered in JSON format, with exchange rates typically relative to USD. All data is returned in a structured format, making it easy for developers to integrate into their applications.
Conclusion
The Fetch Franklin Responsibly Sourced Gold ETF (FGDL) is a testament to the evolving landscape of precious metals investment. By utilizing the Metals-API, developers can access a wealth of information that empowers them to create innovative applications and tools for traders and investors alike. With features like real-time rates, historical data, and comprehensive analytics, the Metals-API stands out as a vital resource in the financial technology space.
For further exploration, be sure to check out the Metals-API Supported Symbols to understand the range of metals available for analysis. The integration of such powerful tools into trading platforms not only enhances user experience but also drives informed decision-making in the dynamic world of precious metals.