Get Madurai Gold 22k (MADU-22k) price data for integration using this API

Introduction
In the world of precious metals trading, accurate and real-time data is crucial for making informed decisions. The Madurai Gold 22k (MADU-22k) price data can be seamlessly integrated into applications using the Metals-API. This API provides developers with the tools necessary to access a wealth of information about gold and other metals, enabling innovative solutions in trading, analytics, and market insights. In this blog post, we will explore the capabilities of the Metals-API, focusing on how it can be utilized to retrieve and analyze gold price data effectively.
Metals-API Information
About Gold (XAU)
Gold, represented by the symbol XAU, has long been a cornerstone of wealth and investment. As digital transformation sweeps across industries, the precious metals market is no exception. The integration of data analytics and technology in trading has revolutionized how investors approach gold. With the rise of digital asset solutions, traders can now leverage real-time data to make more informed decisions.
The Metals-API plays a pivotal role in this transformation by providing developers with access to comprehensive market insights. By utilizing the API, developers can create applications that not only track gold prices but also analyze trends, fluctuations, and historical data. This empowers users to make strategic decisions based on accurate and timely information.
API Description
The Metals-API is a powerful tool designed for developers seeking to integrate real-time metals data into their applications. With its innovative capabilities, the API allows for seamless access to various endpoints that provide essential information about precious metals, including gold, silver, platinum, and palladium.
One of the standout features of the Metals-API is its ability to deliver real-time exchange rates updated frequently, depending on the subscription plan. This ensures that users have access to the most current data available, which is critical for making timely trading decisions. Furthermore, the API supports a variety of endpoints, each tailored to specific needs, such as historical rates, bid and ask prices, and currency conversion.
For more detailed information about the API's capabilities, developers can refer to the Metals-API Documentation, which provides comprehensive guidance on how to implement and utilize the API effectively.
Key Features and Endpoints
The Metals-API offers a range of features that cater to the diverse needs of developers and traders. Below are some of the key endpoints and their functionalities:
Latest Rates Endpoint
The Latest Rates endpoint provides real-time exchange rate data for various metals, including gold. Depending on the subscription plan, this endpoint can return updates every 60 minutes, every 10 minutes, or even more frequently. This feature is essential for traders who require up-to-the-minute pricing information to make informed decisions.
{
"success": true,
"timestamp": 1748955616,
"base": "USD",
"date": "2025-06-03",
"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
For those interested in analyzing trends over time, the Historical Rates endpoint allows users to access exchange rates dating back to 2019. By appending a specific date to the API request, developers can retrieve historical data that is invaluable for market analysis and forecasting.
{
"success": true,
"timestamp": 1748869216,
"base": "USD",
"date": "2025-06-02",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
Bid And Ask Endpoint
The Bid and Ask endpoint is a powerful feature that enables users to retrieve real-time bid and ask prices for various metals. This information is crucial for traders looking to execute buy or sell orders at optimal prices.
{
"success": true,
"timestamp": 1748955616,
"base": "USD",
"date": "2025-06-03",
"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"
}
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 traders who need to quickly assess the value of their holdings in different currencies.
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1748955616,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Time-Series Endpoint
The Time-Series endpoint allows users to query the API for daily historical rates between two dates of their choice. This feature is beneficial for analyzing price movements over specific periods, helping traders identify patterns and make predictions.
{
"success": true,
"timeseries": true,
"start_date": "2025-05-27",
"end_date": "2025-06-03",
"base": "USD",
"rates": {
"2025-05-27": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-05-29": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-06-03": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
Fluctuation Endpoint
The Fluctuation endpoint provides insights into how metal prices fluctuate on a day-to-day basis. This information is vital for traders looking to understand market volatility and make informed trading decisions.
{
"success": true,
"fluctuation": true,
"start_date": "2025-05-27",
"end_date": "2025-06-03",
"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"
}
Open/High/Low/Close (OHLC) Price Endpoint
The OHLC Price endpoint provides essential data for traders looking to analyze price movements over a specific time period. This endpoint returns the opening, high, low, and closing prices for metals, allowing for comprehensive market analysis.
{
"success": true,
"timestamp": 1748955616,
"base": "USD",
"date": "2025-06-03",
"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"
}
Lowest/Highest Price Endpoint
The Lowest/Highest Price endpoint allows users to query the API to get the lowest and highest price for a specified date. This feature is particularly useful for traders looking to identify price extremes and make strategic decisions based on historical data.
{
"success": true,
"timestamp": 1748955616,
"base": "USD",
"date": "2025-06-03",
"rates": {
"XAU": {
"lowest": 0.000481,
"highest": 0.000487
},
"XAG": {
"lowest": 0.0381,
"highest": 0.0383
},
"XPT": {
"lowest": 0.00091,
"highest": 0.000918
}
},
"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 particularly useful for traders interested in analyzing long-term trends in metal prices.
{
"success": true,
"timestamp": 1748955616,
"base": "USD",
"date": "2025-06-03",
"rates": {
"XAU": {
"date": "2025-06-03",
"rate": 0.000482
},
"XAG": {
"date": "2025-06-03",
"rate": 0.03815
}
},
"unit": "per troy ounce"
}
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 metal data into their applications.
Conclusion
The Metals-API is an essential tool for developers and traders looking to harness the power of real-time metals data. By integrating this API into applications, users can access a wealth of information about gold and other precious metals, enabling them to make informed trading decisions based on accurate and timely data. From the Latest Rates endpoint to the Historical Rates and Bid/Ask features, the API offers a comprehensive suite of tools that cater to the diverse needs of the market.
As the digital transformation continues to reshape the landscape of precious metals trading, the Metals-API stands out as a beacon of innovation and technological advancement. By leveraging the capabilities of this API, developers can create next-generation applications that drive efficiency, enhance market insights, and empower users to navigate the complexities of the metals market with confidence.
For more information on how to get started with the Metals-API, visit the Metals-API Website and explore the extensive Metals-API Documentation for detailed guidance on implementation and usage.