Get Chandigarh Gold 24k (CHAN-24k) Historical Prices with Metals-API

Introduction
In the ever-evolving landscape of precious metals trading, obtaining accurate and historical pricing data is crucial for investors and developers alike. One of the most sought-after metals is gold, represented by the symbol XAU. With the rise of digital transformation in the financial sector, tools like the Metals-API have emerged, providing developers with the ability to access real-time and historical data for various metals, including gold. This blog post will delve into how to get historical prices for Chandigarh Gold 24k (CHAN-24k) using the Metals-API, exploring its features, capabilities, and practical applications.
Metals-API Information
About Gold (XAU)
Gold, a timeless symbol of wealth and stability, has undergone a significant transformation in how it is traded and analyzed. The integration of technology in precious metals trading has led to the development of sophisticated data analytics tools that provide market insights and facilitate informed decision-making. The Metals-API stands at the forefront of this digital transformation, offering developers a robust platform to access real-time and historical gold prices.
With the rise of digital asset solutions, the demand for accurate and timely data has never been higher. The Metals-API enables developers to build next-generation applications that leverage real-time metals data, enhancing the trading experience and providing users with the insights they need to navigate the market effectively.
API Description
The Metals-API is a powerful tool designed to provide developers with access to a wide range of metals data, including gold, silver, platinum, and palladium. Its innovative capabilities empower developers to create applications that can analyze market trends, track price fluctuations, and convert between different metals and currencies. The API's real-time data delivery ensures that users have access to the latest market information, enabling them to make informed trading decisions.
For detailed information on how to utilize the API, developers can refer to the Metals-API Documentation, which provides comprehensive guidance on the various endpoints and their functionalities.
Key Features and Endpoints
The Metals-API boasts a variety of endpoints that cater to different needs within the metals trading ecosystem. Each endpoint is designed to provide specific functionalities, enabling developers to access the data they require efficiently.
Latest Rates Endpoint
The Latest Rates Endpoint is a vital feature that allows users to retrieve real-time exchange rate data for metals. Depending on the subscription plan, this endpoint can return data updated every 60 minutes, every 10 minutes, or even more frequently. For instance, a typical response might look like this:
{
"success": true,
"timestamp": 1743642088,
"base": "USD",
"date": "2025-04-03",
"rates": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912,
"XPD": 0.000744
},
"unit": "per troy ounce"
}
This response indicates the current exchange rates for various metals relative to USD, providing a snapshot of the market at that moment.
Historical Rates Endpoint
For those interested in analyzing trends over time, the Historical Rates Endpoint is invaluable. This endpoint allows users to access historical rates for most currencies dating back to 2019. By appending a specific date to the API request, developers can retrieve past pricing data. An example response might look like this:
{
"success": true,
"timestamp": 1743555688,
"base": "USD",
"date": "2025-04-02",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This data is crucial for developers looking to build applications that analyze historical price trends and make predictions based on past performance.
Bid And Ask Endpoint
The Bid and Ask Endpoint is another powerful feature that enables users to retrieve real-time bid and ask prices for metals. This information is essential for traders looking to execute buy or sell orders at optimal prices. A typical response might include:
{
"success": true,
"timestamp": 1743642088,
"base": "USD",
"date": "2025-04-03",
"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"
}
This endpoint provides critical information for traders, allowing them to gauge market conditions and make informed decisions.
Convert Endpoint
The Convert Endpoint allows users to convert any amount from one metal to another or to/from USD. This feature is particularly useful for applications that require currency conversion for pricing or trading purposes. An example response might look like this:
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1743642088,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This response indicates that $1000 is equivalent to 0.482 troy ounces of gold, providing users with a clear understanding of value conversion.
Time-Series Endpoint
The Time-Series Endpoint allows developers to query the API for daily historical rates between two dates of their choice. This feature is particularly useful for analyzing trends over specific periods. A typical response might look like this:
{
"success": true,
"timeseries": true,
"start_date": "2025-03-27",
"end_date": "2025-04-03",
"base": "USD",
"rates": {
"2025-03-27": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-04-03": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This endpoint is essential for developers looking to build applications that require detailed historical analysis and visualization of price trends.
Fluctuation Endpoint
The Fluctuation Endpoint provides information about how currencies fluctuate on a day-to-day basis. This feature is crucial for traders who need to understand market volatility. A sample response might look like this:
{
"success": true,
"fluctuation": true,
"start_date": "2025-03-27",
"end_date": "2025-04-03",
"base": "USD",
"rates": {
"XAU": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
This endpoint allows developers to track price changes over time, providing insights into market behavior.
Open/High/Low/Close (OHLC) Price Endpoint
The OHLC Price Endpoint allows users to query the API for the open, high, low, and close prices for a specific time period. This data is essential for traders looking to analyze market performance over time. A typical response might look like this:
{
"success": true,
"timestamp": 1743642088,
"base": "USD",
"date": "2025-04-03",
"rates": {
"XAU": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
This endpoint provides critical data for traders looking to make informed decisions based on market performance.
Historical LME Endpoint
The Historical LME Endpoint allows users to access historical rates for LME symbols dating back to 2008. This endpoint is particularly useful for developers working with industrial metals. A sample response might look like this:
{
"success": true,
"timestamp": 1743555688,
"base": "USD",
"date": "2025-04-02",
"rates": {
"XCU": 0.294118,
"XAL": 0.434783
},
"unit": "per troy ounce"
}
This endpoint provides valuable historical data for analysis and reporting purposes.
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, developers can refer to the Metals-API Supported Symbols page. This resource is essential for understanding the various metals available for trading and analysis.
Conclusion
The Metals-API is a transformative tool for developers looking to access real-time and historical pricing data for precious metals, particularly gold. With its extensive range of endpoints, the API empowers users to build applications that analyze market trends, track price fluctuations, and convert between different metals and currencies. By leveraging the capabilities of the Metals-API, developers can create innovative solutions that enhance the trading experience and provide valuable insights into the precious metals market.
For more information on how to implement these features and access the data you need, be sure to explore the Metals-API Documentation. With the right tools and knowledge, developers can harness the power of real-time metals data to drive their applications forward.