Interface with Chandigarh Gold 24k (CHAN-24k) Historical Prices through this API
Interface with Chandigarh Gold 24k (CHAN-24k) Historical Prices through this API
In the ever-evolving landscape of precious metals trading, the ability to access historical prices and real-time data is crucial for developers and traders alike. The Metals-API provides a robust solution for interfacing with historical prices of metals, including the popular Gold (XAU). This blog post will delve into the capabilities of the Metals-API, focusing on how to effectively retrieve historical prices and leverage the API's features to enhance trading strategies and market analysis.
About Gold (XAU)
Gold, represented by the symbol XAU, has long been a cornerstone of wealth preservation and investment. As a digital transformation sweeps across the financial sector, the integration of technology in precious metals trading is becoming increasingly vital. The Metals-API stands at the forefront of this transformation, offering developers the tools necessary to harness data analytics and market insights.
With the rise of digital asset solutions, the demand for accurate and timely information on gold prices has surged. The Metals-API not only provides real-time data but also historical prices dating back to 2019, allowing developers to build applications that can analyze trends, forecast market movements, and make informed trading decisions.
API Description
The Metals-API Website serves as a gateway to a wealth of information about precious metals. This API is designed to empower developers to create next-generation applications that require real-time metals data. By leveraging the API, developers can integrate various functionalities into their applications, such as retrieving the latest rates, historical prices, and even converting between different metals.
The API's capabilities extend beyond mere data retrieval; it offers innovative features that can transform how traders interact with the market. For instance, the Latest Rates Endpoint provides real-time exchange rate data, updated every 60 minutes or more frequently depending on the subscription plan. This feature is essential for traders who need to stay informed about the latest market conditions.
Key Features and Endpoints
Among the many features of the Metals-API, several key endpoints stand out for their utility in accessing historical prices and market data:
- Latest Rates Endpoint: This endpoint returns real-time exchange rate data for various metals, allowing users to stay updated with the latest market trends.
- Historical Rates Endpoint: Users can access historical rates for most currencies dating back to 2019. By appending a specific date to the API request, developers can retrieve historical price data for analysis.
- Bid and Ask Endpoint: This feature enables users to retrieve real-time bid and ask prices, providing insights into market liquidity and pricing dynamics.
- Convert Endpoint: This endpoint allows for the conversion of any amount from one metal to another, facilitating seamless transactions and calculations.
- Time-Series Endpoint: Users can query the API for daily historical rates between two chosen dates, enabling comprehensive trend analysis.
- Fluctuation Endpoint: This feature provides information about how currencies fluctuate on a day-to-day basis, which is crucial for understanding market volatility.
- Carat Endpoint: Users can retrieve information about gold rates by carat, which is particularly useful for jewelers and traders dealing in various purities of gold.
- Lowest/Highest Price Endpoint: This endpoint allows users to 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: This feature provides open, high, low, and close prices for a specific date, which is essential for technical analysis.
- Historical LME Endpoint: This endpoint provides access to historical rates for LME symbols dating back to 2008, allowing for in-depth market research.
- API Key: Each user is assigned a unique API key that must be included in requests to authenticate access to the API.
- API Response: The API delivers exchange rates relative to USD by default, ensuring consistency in data interpretation.
- Available Endpoints: The Metals-API offers 14 different endpoints, each providing unique functionalities to cater to various user needs.
- Supported Symbols Endpoint: This endpoint returns all available currencies, ensuring users can access the most up-to-date information.
- News Endpoint: Users can retrieve the latest news articles related to various metals, keeping them informed about 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. This resource is invaluable for developers looking to integrate specific metals into their applications.
API Endpoint Examples and Responses
Understanding the structure of API responses is crucial for effective integration. Below are examples of various endpoints and their corresponding JSON responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1763949664,
"base": "USD",
"date": "2025-11-24",
"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": 1763863264,
"base": "USD",
"date": "2025-11-23",
"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": "2025-11-17",
"end_date": "2025-11-24",
"base": "USD",
"rates": {
"2025-11-17": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-11-19": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-11-24": {
"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": 1763949664,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2025-11-17",
"end_date": "2025-11-24",
"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": 1763949664,
"base": "USD",
"date": "2025-11-24",
"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": 1763949664,
"base": "USD",
"date": "2025-11-24",
"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 offers a comprehensive suite of tools for developers looking to interface with historical prices and real-time data for precious metals like gold. By utilizing the various endpoints, developers can create applications that provide valuable insights into market trends, facilitate trading strategies, and enhance decision-making processes.
With features such as the Historical Rates Endpoint, Time-Series Endpoint, and Bid and Ask Endpoint, the API empowers users to analyze data effectively and respond to market changes swiftly. As the financial landscape continues to evolve, integrating such powerful tools into trading applications will be essential for staying competitive.
For more information on how to get started, visit the Metals-API Documentation and explore the full range of capabilities offered by this innovative API.