Find Mangalore Gold 22k (MANG-22k) prices with this API
Introduction
In the world of precious metals trading, staying updated with the latest prices and trends 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, accessing real-time data has become essential. This is where the Metals-API comes into play, providing developers with the tools to integrate gold pricing and other metal data into their applications seamlessly.
Metals-API Information
About Gold (XAU)
Gold has long been a symbol of wealth and stability, making it a popular choice for investors. The digital transformation in precious metals trading has opened new avenues for data analytics and market insights. With the integration of technology in trading, investors can leverage real-time data to make informed decisions. The Metals-API empowers developers to build next-generation applications that facilitate innovation in price discovery and digital asset solutions.
API Description
The Metals-API is a powerful tool that provides real-time and historical data for various metals, including gold. It allows developers to access a wide range of endpoints that cater to different needs, from retrieving the latest rates to historical data analysis. The API's capabilities are designed to support innovative applications, enabling users to harness the transformative potential of real-time metals data.
For detailed information on how to use the API, refer to the Metals-API Documentation. This resource provides comprehensive guidance on authentication, endpoint usage, and response handling.
Key Features and Endpoints
The Metals-API offers a variety of endpoints, each designed to provide specific functionalities that can enhance trading applications:
- Latest Rates Endpoint: This endpoint returns real-time exchange rate data for metals, updated based on your subscription plan. For example, if you subscribe to the highest tier, you can receive updates every minute, ensuring you have the most current pricing information.
- Historical Rates Endpoint: Access historical rates for most currencies dating back to 2019. This is particularly useful for analyzing trends over time. You can query the API for historical rates by appending a specific date to your request.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals. This feature is essential for traders looking to make quick decisions based on market fluctuations.
- Convert Endpoint: This endpoint allows you to convert any amount from one metal to another or to/from USD. This is particularly useful for applications that require currency conversion functionalities.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This feature is beneficial for analyzing price movements over specific periods.
- Fluctuation Endpoint: Track how metal prices fluctuate on a day-to-day basis. This endpoint provides insights into market volatility, helping traders make informed decisions.
- Carat Endpoint: Retrieve information about gold rates by carat. This is particularly useful for jewelers and consumers looking to understand the value of gold in different purities.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date. This feature can help traders identify price ranges and make strategic decisions.
- Open/High/Low/Close (OHLC) Price Endpoint: Get OHLC data for a specific time period, which is essential for technical analysis and understanding market trends.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, allowing for extensive historical analysis.
- API Key: Your unique API key is essential for accessing the API. It must be included in your requests to authenticate your access.
- API Response: The API delivers exchange rates relative to USD by default. Understanding the structure of the response is crucial for effective data handling.
- Available Endpoints: The API includes 14 endpoints, each providing different functionalities tailored to various needs.
- Supported Symbols Endpoint: This endpoint returns all available currencies, ensuring you have access to the latest symbols for your trading needs.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you informed about market trends and 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.
API Endpoint Examples and Responses
Understanding the API's response structure is crucial for effective integration. Below are examples of responses from various endpoints:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1771632696,
"base": "USD",
"date": "2026-02-21",
"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": 1771546296,
"base": "USD",
"date": "2026-02-20",
"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-02-14",
"end_date": "2026-02-21",
"base": "USD",
"rates": {
"2026-02-14": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-02-16": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-02-21": {
"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": 1771632696,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-02-14",
"end_date": "2026-02-21",
"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": 1771632696,
"base": "USD",
"date": "2026-02-21",
"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": 1771632696,
"base": "USD",
"date": "2026-02-21",
"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 is an invaluable resource for developers looking to integrate real-time and historical data for precious metals like gold (XAU) into their applications. With its comprehensive range of endpoints, the API not only provides the latest rates but also allows for in-depth analysis through historical data, bid/ask prices, and fluctuation tracking. By leveraging this API, developers can create innovative solutions that enhance trading strategies and provide users with critical market insights.
For more information on how to get started, visit the Metals-API Website and explore the Metals-API Documentation for detailed guidance on implementation. Don't forget to check the Metals-API Supported Symbols page to familiarize yourself with the various metal symbols available for trading.