How to Access Graphite South America (SA-GR) Historical Prices via API

Accessing historical prices for metals such as Tellurium (TE) has become increasingly important for developers and analysts in the financial sector. With the rise of digital transformation in metal markets, the need for real-time data and historical insights has never been greater. The Metals-API provides a robust solution for accessing this data, enabling developers to build next-generation applications that leverage real-time and historical metal prices. In this blog post, we will explore how to access Graphite South America (SA-GR) historical prices via the Metals-API, focusing on the capabilities of the API, its endpoints, and practical use cases.
Metals-API Information
About Tellurium (TE)
Tellurium is a rare metalloid that plays a crucial role in various technological innovations, particularly in the fields of electronics and renewable energy. As the demand for clean energy solutions grows, Tellurium's significance in solar panel manufacturing and thermoelectric devices is becoming more pronounced. The digital transformation in metal markets has led to the integration of smart technologies and data analytics, allowing stakeholders to gain insights into price fluctuations and market trends.
Technological advancements have made it possible to track Tellurium prices in real-time, providing developers with the tools needed to create applications that can analyze market behavior and predict future trends. The Metals-API stands at the forefront of this transformation, offering a comprehensive suite of features that empower developers to access and manipulate metal price data efficiently.
API Description
The Metals-API is a powerful tool designed for developers seeking to access real-time and historical metal prices. With its innovative capabilities, the API allows users to retrieve data on various metals, including Tellurium, Gold (XAU), Silver (XAG), Platinum (XPT), and Palladium (XPD). The API's transformative potential lies in its ability to provide accurate and timely data, which can be integrated into applications for financial analysis, trading, and market research.
For more information on how to get started, visit the Metals-API Website or check out the Metals-API Documentation.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different data retrieval needs. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated based on your subscription plan. Depending on the plan, updates can occur every 60 minutes or even every 10 minutes, ensuring you have the most current information at your fingertips.
- Historical Rates Endpoint: Access historical rates dating back to 2019 by appending a specific date to your query. This feature is invaluable for analysts looking to study price trends over time.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals, allowing traders to make informed decisions based on current market conditions.
- Convert Endpoint: This endpoint enables users to convert amounts from one metal to another or to/from USD, facilitating easy calculations for trading and investment purposes.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, providing a comprehensive view of price movements over time.
- Fluctuation Endpoint: Track how metal prices fluctuate on a day-to-day basis, offering insights into market volatility and trends.
- Carat Endpoint: Retrieve information about Gold rates by Carat, which is particularly useful for jewelers and investors in precious metals.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest price for a specified date, helping traders identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Access detailed OHLC data for specific time periods, essential for technical analysis and trading strategies.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a long-term perspective on metal prices.
- API Key: Your unique API key is required to access the API, ensuring secure and authenticated requests.
- API Response: The API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format.
- Available Endpoints: The Metals-API includes 14 different endpoints, each serving a unique purpose for data retrieval and analysis.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available metal symbols, ensuring you have access to the latest data.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you informed about market 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": 1760749275,
"base": "USD",
"date": "2025-10-18",
"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": 1760662875,
"base": "USD",
"date": "2025-10-17",
"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": "2025-10-11",
"end_date": "2025-10-18",
"base": "USD",
"rates": {
"2025-10-11": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-10-13": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-10-18": {
"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": 1760749275,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2025-10-11",
"end_date": "2025-10-18",
"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": 1760749275,
"base": "USD",
"date": "2025-10-18",
"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": 1760749275,
"base": "USD",
"date": "2025-10-18",
"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
In conclusion, accessing historical prices for metals like Tellurium (TE) through the Metals-API is a straightforward process that opens up a world of possibilities for developers and analysts alike. The API's extensive features, including real-time rates, historical data, and various endpoints for conversion and fluctuation tracking, provide a comprehensive toolkit for anyone looking to analyze metal prices. By leveraging the power of the Metals-API, developers can create innovative applications that offer valuable insights into market trends and price movements.
For further exploration, consider diving into the Metals-API Documentation for detailed guidance on implementation and usage. Additionally, the Metals-API Supported Symbols page will help you familiarize yourself with the various metal symbols available for querying.
As the market for metals continues to evolve, staying informed and equipped with the right tools will be essential for success. The Metals-API is not just a data provider; it is a gateway to understanding the complexities of metal markets in the digital age.