Access Jaipur Gold 24k (JAIP-24k) prices through this API

Access Jaipur Gold 24k (JAIP-24k) Prices Through This API
Metals-API provides a robust solution for accessing gold prices, including the Jaipur Gold 24k (JAIP-24k), through its comprehensive API. This blog post delves into the intricacies of the Metals-API, focusing on its capabilities, features, and the transformative potential it holds for developers looking to integrate precious metals data into their applications.
Metals-API Information
About Gold (XAU)
XAU, has long been a cornerstone of wealth and investment. In recent years, the digital transformation in precious metals has opened new avenues for traders and investors. With the integration of technology in trading, data analytics has become a vital tool for understanding market dynamics. The Metals-API plays a pivotal role in this transformation by offering real-time access to gold prices and market insights.
API Description
Metals-API Website or check the Metals-API Documentation for detailed guidance on implementation.
Key Features and Endpoints
- Latest Rates Endpoint: Depending on your subscription plan, this endpoint provides real-time exchange rate data updated every 60 minutes, every 10 minutes, or even more frequently. This allows developers to access the most current market prices for gold and other metals.
- Historical Rates Endpoint: Historical rates are available for most currencies dating back to 2019. Developers can query the Metals-API for historical rates by appending a specific date to the endpoint, enabling them to analyze past market trends.
- Bid And Ask Endpoint: This feature allows developers to retrieve real-time bid and ask prices for metals, providing critical information for traders looking to make informed decisions.
- Convert Endpoint: The API includes a currency conversion endpoint, which can be used to convert any amount from one metal to another or to/from USD. This is particularly useful for applications that require multi-currency support.
- Time-Series Endpoint: Developers can query the API for daily historical rates between two dates of their choice, allowing for in-depth analysis of price movements over time.
- Fluctuation Endpoint: This endpoint provides information about how currencies fluctuate on a day-to-day basis, offering insights into market volatility.
- Carat Endpoint: Developers can retrieve information about gold rates by carat, which is essential for applications focused on jewelry and precious metal trading.
- Lowest/Highest Price Endpoint: This feature allows developers to query the API to get the lowest and highest price for a specified date, which is crucial for understanding market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific time period, enabling traders to analyze market performance.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, which is beneficial for those interested in long-term market trends.
- API Key: Each user is assigned a unique API key that must be included in the API requests to authenticate access.
- API Response: The API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available currencies, ensuring developers have access to the latest symbols.
- Gold Price India Endpoint: Retrieve the latest gold price in India using this dedicated endpoint, which is particularly useful for regional applications.
- News Endpoint: Access the latest news articles related to various metals, keeping developers informed about market developments.
List of Symbols
Metals-API Supported Symbols page.
API Endpoint Examples and Responses
Latest Rates Endpoint
{
"success": true,
"timestamp": 1753041617,
"base": "USD",
"date": "2025-07-20",
"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
{
"success": true,
"timestamp": 1752955217,
"base": "USD",
"date": "2025-07-19",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
Time-series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-07-13",
"end_date": "2025-07-20",
"base": "USD",
"rates": {
"2025-07-13": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-07-15": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-07-20": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "XAU",
"amount": 1000
},
"info": {
"timestamp": 1753041617,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-07-13",
"end_date": "2025-07-20",
"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
{
"success": true,
"timestamp": 1753041617,
"base": "USD",
"date": "2025-07-20",
"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
{
"success": true,
"timestamp": 1753041617,
"base": "USD",
"date": "2025-07-20",
"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
Metals-API Documentation for detailed guidance and examples. Additionally, the Metals-API Supported Symbols page offers a comprehensive list of available symbols, ensuring that developers have access to the latest market data.