Access Historical Surat Gold 24k (SURA-24k) Prices in Multiple Currencies with this API

Access Historical Surat Gold 24k (SURA-24k) Prices in Multiple Currencies with this API
In today's fast-paced financial landscape, having access to accurate and real-time data is crucial for businesses and developers alike. The Metals-API provides a powerful solution for accessing historical and current gold prices, specifically the Surat Gold 24k (SURA-24k) prices, in multiple currencies. This blog post will delve into how the Metals-API can empower developers to create innovative applications that leverage real-time metals data, focusing on the digital transformation in precious metals trading, data analytics, and market insights.
About Gold (XAU)
Gold, represented by the symbol XAU, has long been a cornerstone of financial markets. Its value is not only a reflection of market demand but also a safe haven during economic uncertainty. The digital transformation in precious metals has opened new avenues for trading and investment, allowing for enhanced data analytics and market insights. With the integration of technology in trading, businesses can now utilize advanced tools to innovate price discovery and offer digital asset solutions.
The Metals-API stands at the forefront of this transformation, providing developers with the tools necessary to access and manipulate gold price data in real-time. By utilizing the API, businesses can gain insights into market trends, optimize trading strategies, and enhance their decision-making processes.
API Capabilities
The Metals-API offers a comprehensive suite of features that cater to various business needs. With endpoints designed for real-time data retrieval, historical analysis, and currency conversion, developers can build next-generation applications that harness the power of metals data. Here are some of the key features:
- 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 businesses that require up-to-the-minute pricing for trading and investment decisions.
- Historical Rates Endpoint: Access historical rates for most currencies dating back to 2019. By appending a specific date to your query, you can retrieve past gold prices, enabling businesses to analyze trends over time.
- Bid And Ask Endpoint: This powerful feature allows you to retrieve real-time bid and ask prices for gold and other 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 that allows you to convert any amount from one currency to another. This is particularly useful for businesses operating in multiple markets.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This feature is invaluable for conducting in-depth market analysis and forecasting.
- Fluctuation Endpoint: Retrieve information about how gold prices fluctuate on a day-to-day basis. This data can help businesses understand volatility and make informed trading decisions.
- Carat Endpoint: Access information about gold rates by carat. This is particularly useful for jewelers and businesses in the luxury goods sector.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for gold over a specified period. This information can assist in identifying market extremes and potential trading opportunities.
- Open/High/Low/Close (OHLC) Price Endpoint: Retrieve open, high, low, and close prices for gold over a specific time period. This data is essential for technical analysis and trading strategies.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a broader context for market analysis.
- API Key: Your unique API key is essential for accessing the Metals-API. It must be included in the API base URL's access_key parameter to authenticate your requests.
- API Response: The exchange rates delivered by the Metals-API are by default relative to USD, ensuring consistency in your data analysis.
- Available Endpoints: The Metals-API offers 14 different endpoints, each providing unique functionalities tailored to meet diverse business needs.
- Supported Symbols Endpoint: This constantly updated endpoint returns all available currencies and metals, allowing developers to stay informed about the latest offerings.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you updated on market trends and developments.
API Endpoint Examples and Responses
Understanding how to interact with the Metals-API is crucial for developers. Below are examples of various API endpoints and their expected responses:
Latest Rates Endpoint
{
"success": true,
"timestamp": 1760835724,
"base": "USD",
"date": "2025-10-19",
"rates": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912,
"XPD": 0.000744
},
"unit": "per troy ounce"
}
This response indicates the current price of gold (XAU) in relation to USD, along with prices for silver (XAG), platinum (XPT), and palladium (XPD).
Historical Rates Endpoint
{
"success": true,
"timestamp": 1760749324,
"base": "USD",
"date": "2025-10-18",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This example shows how to retrieve historical prices for gold and other metals, allowing for trend analysis over time.
Time-series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-10-12",
"end_date": "2025-10-19",
"base": "USD",
"rates": {
"2025-10-12": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-10-14": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-10-19": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This response provides a time series of gold prices, enabling developers to analyze price movements over a specified period.
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1760835724,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
The convert endpoint allows users to convert amounts between currencies, providing flexibility for businesses operating in different markets.
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-10-12",
"end_date": "2025-10-19",
"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 endpoint provides insights into how gold prices fluctuate over time, helping traders make informed decisions based on volatility.
OHLC (Open/High/Low/Close) Price Endpoint
{
"success": true,
"timestamp": 1760835724,
"base": "USD",
"date": "2025-10-19",
"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 response provides open, high, low, and close prices for gold, which are essential for technical analysis and trading strategies.
Bid/Ask Endpoint
{
"success": true,
"timestamp": 1760835724,
"base": "USD",
"date": "2025-10-19",
"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 endpoint provides current bid and ask prices for metals, allowing traders to understand market conditions and make timely decisions.
Conclusion
The Metals-API is a transformative tool for developers looking to access accurate and real-time gold prices, including Surat Gold 24k (SURA-24k), in multiple currencies. By leveraging the API's extensive features, businesses can gain valuable insights into market trends, optimize trading strategies, and enhance their decision-making processes. Whether you're interested in historical data analysis, real-time pricing, or currency conversion, the Metals-API provides the necessary tools to succeed in the dynamic world of precious metals trading.
For more information on how to implement these features, refer to the Metals-API Documentation, which provides comprehensive guidance on each endpoint and its capabilities. Additionally, explore the Metals-API Supported Symbols page to stay updated on the latest offerings. Embrace the future of precious metals trading with the Metals-API and unlock the potential of real-time data.