Get Tellurium (TE) Daily Closing Prices using this API

Get Tellurium (TE) Daily Closing Prices using this API
Metals-API Information
About Tellurium (TE)
API Description
Metals-API Website or check out the Metals-API Documentation for detailed guidance on implementation.
Key Features and Endpoints
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated frequently based on your subscription plan. Developers can easily retrieve the latest prices for Tellurium and other metals, enabling them to build applications that reflect current market conditions.
- Historical Rates Endpoint: Access historical rates dating back to 2019. By appending a specific date to the API request, developers can retrieve past prices for Tellurium, allowing for comprehensive analysis and reporting.
- Bid And Ask Endpoint: This feature enables users to retrieve real-time bid and ask prices for metals, providing insights into market liquidity and pricing dynamics.
- Convert Endpoint: The conversion endpoint allows for seamless currency conversion between different metals and fiat currencies, making it easier for developers to handle transactions and pricing in their applications.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This endpoint is particularly useful for analyzing trends over specific periods.
- Fluctuation Endpoint: Track how prices fluctuate over time, providing valuable insights into market volatility and trends.
- Open/High/Low/Close (OHLC) Price Endpoint: Retrieve detailed pricing information, including opening, high, low, and closing prices for a specific time period, which is essential for technical analysis.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, allowing for extensive historical analysis.
- API Key: Each user receives a unique API key that must be included in requests to authenticate and authorize access to the API.
- API Response: The API returns exchange rates relative to USD by default, with all data provided in a structured JSON format.
- Supported Symbols Endpoint: This endpoint provides a constantly updated list of all available metal symbols, ensuring developers have access to the latest information.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping users informed about market developments.
List of Symbols
Metals-API Supported Symbols page.
API Endpoint Examples and Responses
Latest Rates Endpoint
{
"success": true,
"timestamp": 1750593614,
"base": "USD",
"date": "2025-06-22",
"rates": {
"TE": 0.000482
},
"unit": "per troy ounce"
}
Historical Rates Endpoint
{
"success": true,
"timestamp": 1750507214,
"base": "USD",
"date": "2025-06-21",
"rates": {
"TE": 0.000485
},
"unit": "per troy ounce"
}
Time-series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-06-15",
"end_date": "2025-06-22",
"base": "USD",
"rates": {
"2025-06-15": {
"TE": 0.000485
},
"2025-06-22": {
"TE": 0.000482
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "TE",
"amount": 1000
},
"info": {
"timestamp": 1750593614,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-06-15",
"end_date": "2025-06-22",
"base": "USD",
"rates": {
"TE": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
OHLC (Open/High/Low/Close) Endpoint
{
"success": true,
"timestamp": 1750593614,
"base": "USD",
"date": "2025-06-22",
"rates": {
"TE": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
Bid/Ask Endpoint
{
"success": true,
"timestamp": 1750593614,
"base": "USD",
"date": "2025-06-22",
"rates": {
"TE": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 2.0e-6
}
},
"unit": "per troy ounce"
}
Conclusion
Metals-API Documentation for detailed guidance on implementation and usage. Additionally, the Metals-API Supported Symbols page provides a comprehensive list of available metal symbols, ensuring you have access to the latest information.