Discover Gurgaon Gold 22k (GURG-22k) Historical Prices with this API

Introduction
In the world of precious metals trading, understanding historical prices is crucial for making informed investment decisions. One of the most sought-after metals is gold, represented by the symbol XAU. With the rise of digital transformation in the financial sector, accessing accurate and real-time data has become easier than ever. The Metals-API provides a powerful solution for developers looking to integrate historical gold price data into their applications. This blog post will explore how to retrieve historical prices for Gurgaon Gold 22k (GURG-22k) using the Metals-API, along with a comprehensive overview of its features and capabilities.
Metals-API Information
About Gold (XAU)
Gold has long been a symbol of wealth and stability. As a precious metal, it plays a significant role in global finance and investment. The digital transformation in precious metals trading has opened new avenues for data analytics and market insights. By leveraging technology, traders can now access real-time data, enabling them to make informed decisions based on current market conditions.
The integration of advanced technologies in trading platforms has revolutionized price discovery. With the help of data analytics, traders can analyze historical trends and fluctuations in gold prices, allowing them to predict future movements. The Metals-API empowers developers to build next-generation applications that harness the power of real-time metals data, providing users with innovative digital asset solutions.
API Description
The Metals-API is a robust platform that offers a wide range of functionalities for accessing precious metals data. It provides developers with the tools needed to create applications that can retrieve real-time and historical data for various metals, including gold, silver, platinum, and palladium. The API is designed with innovation and technological advancement in mind, making it an essential resource for anyone looking to integrate metals data into their projects.
With the Metals-API, developers can access a variety of endpoints that cater to different needs. Whether you are looking for the latest exchange rates, historical prices, or specific market insights, the Metals-API has you covered. For detailed information on how to use the API, refer to the Metals-API Documentation.
Key Features and Endpoints
The Metals-API offers several key features that enhance its usability and functionality:
- Latest Rates Endpoint: Depending on your subscription plan, this endpoint returns real-time exchange rate data updated every 60 minutes, every 10 minutes, or even more frequently. This feature is essential for traders who need to stay updated on market fluctuations.
- Historical Rates Endpoint: Access historical rates for most currencies dating back to 2019. By appending a date to the API request, you can retrieve historical prices for gold and other metals, allowing for in-depth market analysis.
- Bid And Ask Endpoint: This powerful feature enables you to retrieve real-time bid and ask prices for metals, providing insight into market liquidity and pricing dynamics.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint, allowing you to convert any amount from one currency to another, facilitating seamless transactions.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, enabling you to analyze trends over specific time periods.
- Fluctuation Endpoint: Retrieve information about how currencies fluctuate on a day-to-day basis, providing insights into market volatility.
- Carat Endpoint: Access gold rates by carat, which is particularly useful for jewelers and consumers interested in purchasing gold jewelry.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest price for a specified date, helping traders identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint allows you to get the open, high, low, and close prices for a specific date, essential for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a comprehensive view of market trends.
- API Key: Your unique API key is required to access the API, ensuring secure and authorized usage.
- API Response: Exchange rates delivered by the Metals-API are by default relative to USD, with all data returned in a structured JSON format.
- Available Endpoints: The API comes with 14 endpoints, each providing different functionalities tailored to various needs.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies and metals.
- Gold Price India Endpoint: Retrieve the latest gold price in India using the dedicated endpoint, which is particularly useful for local traders.
- News Endpoint: Stay informed with the latest news articles related to various metals, helping you keep up with 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 interact with the Metals-API is crucial for effective implementation. Below are examples of various API endpoints, showcasing their functionality and response structures.
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1758862931,
"base": "USD",
"date": "2025-09-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"
}
This response indicates a successful request, providing the latest rates for various metals relative to USD.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999:
{
"success": true,
"timestamp": 1758776531,
"base": "USD",
"date": "2025-09-25",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This example shows historical rates for gold and other metals, allowing for analysis of past market conditions.
Time-series Endpoint
Get exchange rates for a specific time period:
{
"success": true,
"timeseries": true,
"start_date": "2025-09-19",
"end_date": "2025-09-26",
"base": "USD",
"rates": {
"2025-09-19": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-09-21": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-09-26": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This response provides a time series of rates for gold, silver, and platinum, allowing for trend analysis over the specified period.
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": 1758862931,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This example demonstrates how to convert a specified amount from USD to gold, providing the result in troy ounces.
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2025-09-19",
"end_date": "2025-09-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"
}
This response provides insights into how gold and other metals fluctuated over a specific period, which is vital for traders looking to capitalize on market movements.
OHLC (Open/High/Low/Close) Price Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1758862931,
"base": "USD",
"date": "2025-09-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"
}
This endpoint provides critical data for traders who rely on technical analysis, offering insights into price movements throughout the trading day.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1758862931,
"base": "USD",
"date": "2025-09-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"
}
This response provides the current bid and ask prices for gold, silver, and platinum, essential for traders looking to execute orders at the best prices.
Conclusion
The Metals-API is an invaluable resource for developers seeking to integrate historical prices and real-time data for precious metals like gold. With its comprehensive set of features, including the ability to access the latest rates, historical data, and various conversion options, the API empowers users to make informed trading decisions. By leveraging the power of data analytics and technology integration, traders can gain insights into market trends and fluctuations, ultimately enhancing their trading strategies.
For more information on how to utilize the Metals-API effectively, visit the Metals-API Documentation and explore the extensive capabilities of this powerful tool. Additionally, check out the Metals-API Supported Symbols page to familiarize yourself with the various metals available for trading. With the right tools and data at your disposal, you can navigate the precious metals market with confidence.