Access Mysore Gold 24k (MYSO-24k) API Documentation for JSON Format
Access Mysore Gold 24k (MYSO-24k) API Documentation for JSON Format
In the world of precious metals trading, having access to real-time data is crucial for making informed decisions. The Metals-API provides developers with a powerful tool to retrieve Gold (XAU) exchange rates in JSON format, enabling seamless integration into applications. This blog post will explore the capabilities of the Metals-API, focusing on its innovative features, practical applications, and how to effectively utilize its endpoints to access vital market data.
About Gold (XAU)
Gold has long been a symbol of wealth and stability, and in today's digital age, it is undergoing a transformation through technology. The integration of data analytics and market insights into precious metals trading is revolutionizing how investors interact with these assets. With the rise of digital asset solutions, the demand for accurate and real-time data has never been higher. The Metals-API stands at the forefront of this digital transformation, offering developers the tools they need to innovate in price discovery and trading.
API Description
The Metals-API is designed to empower developers by providing access to real-time metals data, including Gold (XAU) exchange rates. This API allows for the creation of next-generation applications that can analyze market trends, track fluctuations, and provide insights into precious metals trading. With its user-friendly interface and comprehensive documentation, developers can easily integrate the API into their systems.
For more information, visit the Metals-API Website or check out the Metals-API Documentation for detailed guidance on implementation.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs in the realm of metals trading. Here are some of the key features:
- Latest Rates Endpoint: Depending on your subscription plan, this endpoint provides real-time exchange rate data for Gold and other metals, updated every 60 minutes or 10 minutes. This feature is essential for traders who need the most current market information.
- Historical Rates Endpoint: Access historical rates dating back to 2019 by appending a specific date (YYYY-MM-DD) to the API request. This is particularly useful for analyzing trends over time.
- Bid And Ask Endpoint: Retrieve real-time Bid and Ask prices for Gold and other metals, allowing traders to make informed decisions based on current market conditions.
- Convert Endpoint: This endpoint enables users to convert any amount from one currency to another, facilitating transactions across different markets.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, providing insights into price movements over time.
- Fluctuation Endpoint: Track how currencies fluctuate on a day-to-day basis, helping traders understand market volatility.
- Carat Endpoint: Retrieve information about Gold rates by Carat, which is essential for jewelers and those in the jewelry industry.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest price for Gold over a specified period, aiding in investment decisions.
- Open/High/Low/Close (OHLC) Price Endpoint: Get the open, high, low, and close prices for Gold, providing a comprehensive view of market performance.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, useful for those trading on the London Metal Exchange.
- API Key: Your unique API Key is required to access the API, ensuring secure and authorized usage.
- API Response: Exchange rates are delivered relative to USD by default, with all data returned in a structured JSON format.
- Available Endpoints: The Metals-API includes 14 endpoints, each providing distinct functionalities tailored to various trading needs.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies and metals, ensuring you have the latest information at your fingertips.
List of Symbols
The 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
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1781233682,
"base": "USD",
"date": "2026-06-12",
"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": 1781147282,
"base": "USD",
"date": "2026-06-11",
"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": "2026-06-05",
"end_date": "2026-06-12",
"base": "USD",
"rates": {
"2026-06-05": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-06-07": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-06-12": {
"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": 1781233682,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-06-05",
"end_date": "2026-06-12",
"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": 1781233682,
"base": "USD",
"date": "2026-06-12",
"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": 1781233682,
"base": "USD",
"date": "2026-06-12",
"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 provides a comprehensive suite of tools for developers looking to integrate Gold (XAU) exchange rates into their applications. With features like real-time rates, historical data, and various endpoints for conversion and fluctuation tracking, this API is an invaluable resource for anyone involved in precious metals trading. By leveraging the capabilities of the Metals-API, developers can create innovative solutions that enhance market analysis and trading strategies.
For further exploration of the API's capabilities, refer to the Metals-API Documentation and stay updated with the latest supported symbols on the Metals-API Supported Symbols page. Embrace the future of trading with the Metals-API and unlock the potential of real-time metals data.