Get Tether Gold (XAUT) prices using this API
Get Tether Gold (XAUT) Prices Using This API
In the rapidly evolving world of digital assets, Tether Gold (XAUT) stands out as a unique offering, combining the stability of gold with the flexibility of cryptocurrency. To effectively track and analyze Tether Gold prices, developers can leverage the powerful capabilities of the Metals-API. This API provides real-time and historical data on precious metals, including gold, silver, platinum, and palladium, enabling developers to create innovative applications that enhance market insights and trading strategies.
About Gold (XAU)
Gold has long been a symbol of wealth and stability, and its digital transformation is reshaping how investors interact with this precious metal. The integration of data analytics and technology in trading has opened new avenues for price discovery and investment strategies. With the rise of digital asset solutions, Tether Gold represents a bridge between traditional finance and the burgeoning world of cryptocurrencies.
As a digital asset backed by physical gold, Tether Gold allows investors to hold a stable asset in a volatile market. The ability to access real-time data through APIs like Metals-API empowers developers to build applications that provide market insights, track price fluctuations, and facilitate trading operations seamlessly. This innovation is crucial for traders seeking to make informed decisions based on accurate and timely data.
API Description
The Metals-API is designed to provide developers with comprehensive access to real-time and historical metals data. It allows for the integration of advanced analytics and trading functionalities into applications, making it a vital tool for anyone involved in the precious metals market. The API's capabilities include retrieving the latest rates, historical data, and various conversion functionalities, all of which can be utilized to enhance user experiences and decision-making processes.
With a focus on innovation and technological advancement, the Metals-API empowers developers to create next-generation applications that can analyze market trends, optimize trading strategies, and provide users with valuable insights into the precious metals market. The API is structured to support a wide range of functionalities, ensuring that developers can tailor their applications to meet specific needs.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs within the precious metals market. Each endpoint is designed to provide specific functionalities that can be utilized in various applications:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for precious metals, updated based on your subscription plan. Depending on the plan, updates can occur every 60 minutes or every 10 minutes, ensuring that users have access to the most current market information.
- Historical Rates Endpoint: Access historical rates dating back to 2019 by appending a specific date to the API request. This feature is essential for analyzing trends and making informed investment decisions based on past performance.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals, allowing traders to understand market conditions and make timely decisions.
- Convert Endpoint: This endpoint enables the conversion of any amount from one metal to another or to/from USD, facilitating transactions and price comparisons across different assets.
- 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, which is crucial for understanding market volatility and making strategic decisions.
- Carat Endpoint: Retrieve information about gold rates by carat, which is particularly useful for jewelers and consumers interested in the value of gold jewelry.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date, helping traders identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Access OHLC data for a specific time period, which is vital for technical analysis and trading strategies.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a comprehensive view of market trends.
- API Key: Each user is assigned a unique API key that must be included in requests to authenticate access to the API.
- API Response: The API delivers exchange rates relative to USD, with all data returned in a structured JSON format for easy integration.
- Available Endpoints: The Metals-API includes 14 endpoints, each offering different functionalities to cater to diverse user needs.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies and metals supported by the API.
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 metals into their applications.
API Endpoint Examples and Responses
Understanding the API's response structure is crucial for effective integration. Below are examples of various endpoints and their corresponding responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1779495123,
"base": "USD",
"date": "2026-05-23",
"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"
}
This response indicates that the API successfully retrieved the latest rates for various metals, with the base currency being USD.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999:
{
"success": true,
"timestamp": 1779408723,
"base": "USD",
"date": "2026-05-22",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This example shows the historical rates for gold and other metals, allowing users to analyze past market behavior.
Time-Series Endpoint
Get exchange rates for a specific time period:
{
"success": true,
"timeseries": true,
"start_date": "2026-05-16",
"end_date": "2026-05-23",
"base": "USD",
"rates": {
"2026-05-16": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-05-18": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-05-23": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This response provides a time-series view of exchange rates, which is essential for trend analysis and forecasting.
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": 1779495123,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This example illustrates how to convert a specific amount of USD into troy ounces of gold, showcasing the API's versatility.
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-05-16",
"end_date": "2026-05-23",
"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 response provides insights into how metal prices have fluctuated over a specified period, which is critical for traders looking to capitalize on market movements.
OHLC (Open/High/Low/Close) Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1779495123,
"base": "USD",
"date": "2026-05-23",
"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 endpoint is particularly useful for traders who rely on technical analysis to make informed decisions based on price movements throughout the trading day.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1779495123,
"base": "USD",
"date": "2026-05-23",
"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 response provides essential information for traders to understand market conditions and make informed decisions based on current bid and ask prices.
Conclusion
The Metals-API is a powerful tool for developers looking to integrate precious metals data into their applications. With its extensive range of endpoints and capabilities, it enables users to access real-time and historical data, perform conversions, and analyze market trends effectively. By leveraging this API, developers can create innovative solutions that enhance trading strategies and provide valuable insights into the precious metals market.
For more information on how to utilize the Metals-API, refer to the Metals-API Documentation. Additionally, explore the Metals-API Supported Symbols page for a comprehensive list of available metals and currencies. By harnessing the capabilities of the Metals-API, developers can stay ahead in the dynamic world of digital assets and precious metals trading.