Access real-time Graphite South America (SA-GR) prices using this API

Access Real-Time Graphite South America (SA-GR) Prices Using This API
In today's fast-paced digital economy, the demand for real-time data is paramount, especially in the metals market. The Metals-API provides developers with the tools necessary to access real-time prices for various metals, including the highly sought-after Tellurium (TE). This blog post will delve into the capabilities of the Metals-API, explore the markets surrounding Tellurium, and discuss how this API can transform the way developers interact with metal pricing data.
About Tellurium (TE)
Tellurium is a rare metalloid that has gained significant attention in various industries, particularly in electronics and renewable energy. As the world shifts towards digital transformation, the demand for Tellurium is expected to rise due to its applications in solar cells and thermoelectric devices. The integration of smart technologies and data analytics in metal markets is paving the way for innovative solutions that can enhance efficiency and decision-making.
Technological advancements have allowed for better tracking and analysis of metal prices, enabling stakeholders to make informed decisions. The Metals-API plays a crucial role in this transformation by providing real-time data that can be leveraged for analytics, forecasting, and strategic planning. As we look to the future, the possibilities for Tellurium and its market are vast, driven by ongoing research and development in technology.
API Description
The Metals-API is a powerful tool designed to provide real-time and historical data on metal prices, including Tellurium. This API empowers developers to build next-generation applications that require accurate and timely metal pricing information. With its robust features, the Metals-API stands out as a leader in the field of metals data integration.
For more detailed information, you can visit the Metals-API Website or check the Metals-API Documentation for comprehensive guidance on how to implement this API effectively.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different 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 every 10 minutes, ensuring you have the most current information at your fingertips.
- Historical Rates Endpoint: Access historical rates dating back to 2019. This feature allows you to query the API for past rates by appending a specific date, enabling in-depth analysis of price trends over time.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals. This feature is essential for traders who need to understand market conditions and make informed buying or selling decisions.
- 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 for pricing.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This feature is invaluable 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, which can inform trading strategies.
- Carat Endpoint: Retrieve information about gold rates by carat. This feature is particularly useful for jewelers and consumers interested in gold pricing.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date range, helping you identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Get the open, high, low, and close prices for a specific time period, which is crucial for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a long-term view of market trends.
- API Key: Your unique API key is essential for accessing the API and must be included in your requests.
- API Response: The API delivers exchange rates relative to USD, ensuring consistency in data interpretation.
- Available Endpoints: The Metals-API includes multiple endpoints, each designed for specific functionalities, allowing developers to tailor their applications to their needs.
- Supported Symbols Endpoint: This endpoint returns all available metal symbols, ensuring you have access to the latest data.
- Gold Price India Endpoint: Retrieve the latest gold price in India, catering to a specific regional market.
- News Endpoint: Stay updated with the latest news articles related to various metals, providing context to market movements.
API Endpoint Examples and Responses
Understanding how to interact with the Metals-API is crucial for effective implementation. Below are examples of various endpoints and their responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1754038821,
"base": "USD",
"date": "2025-08-01",
"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 the success of the request, the timestamp of the data retrieval, the base currency (USD), the date of the rates, and the rates for various metals.
Historical Rates Endpoint
Access historical exchange rates for any date since 1999:
{
"success": true,
"timestamp": 1753952421,
"base": "USD",
"date": "2025-07-31",
"rates": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915,
"XPD": 0.000748
},
"unit": "per troy ounce"
}
This response provides historical data, allowing developers to analyze trends and make predictions based on past performance.
Time-Series Endpoint
Get exchange rates for a specific time period:
{
"success": true,
"timeseries": true,
"start_date": "2025-07-25",
"end_date": "2025-08-01",
"base": "USD",
"rates": {
"2025-07-25": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2025-07-27": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2025-08-01": {
"XAU": 0.000482,
"XAG": 0.03815,
"XPT": 0.000912
}
},
"unit": "per troy ounce"
}
This endpoint is particularly useful for developers looking to analyze price movements over time, providing a clear view of trends.
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": 1754038821,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
This response shows how much 1000 USD is worth in troy ounces of gold, providing a straightforward conversion mechanism.
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2025-07-25",
"end_date": "2025-08-01",
"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 endpoint provides insights into market volatility, essential for traders and analysts.
OHLC (Open/High/Low/Close) Price Endpoint
Get OHLC data for a specific time period:
{
"success": true,
"timestamp": 1754038821,
"base": "USD",
"date": "2025-08-01",
"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 data is crucial for technical analysis, allowing traders to understand market behavior over specific periods.
Bid/Ask Endpoint
Get current bid and ask prices for metals:
{
"success": true,
"timestamp": 1754038821,
"base": "USD",
"date": "2025-08-01",
"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 endpoint is vital for traders looking to make quick decisions based on current market conditions.
Conclusion
The Metals-API is a transformative tool that empowers developers to access real-time and historical data for various metals, including Tellurium. By leveraging the capabilities of this API, developers can create applications that provide valuable insights into metal pricing, enabling better decision-making in trading and investment.
As the demand for accurate and timely data continues to grow, the Metals-API stands out as a reliable resource for developers looking to integrate metal pricing into their applications. For more information on the available symbols, visit the Metals-API Supported Symbols page. Whether you are building a trading platform, a financial analysis tool, or a market research application, the Metals-API offers the features and flexibility needed to succeed in the evolving metals market.