Get Terbium (TER) prices using this API and integrate them into your trading platform

Get Terbium (TER) prices using this API and integrate them into your trading platform
Metals-API provides developers with the tools necessary to integrate live metal prices, including Terbium (TER), into their trading platforms. This blog post will delve into the capabilities of the Metals-API, its various endpoints, and how you can leverage this powerful tool to enhance your trading applications.
Understanding Terbium (TER) and Its Markets
API Description
Metals-API is a powerful JSON API that provides real-time and historical data for various metals, including Terbium. It empowers developers to build next-generation applications that require accurate metal pricing information. The API's capabilities extend beyond simple price retrieval; it offers a range of endpoints designed to meet the diverse needs of traders and developers alike.
Metals-API Documentation.
Key Features and Endpoints
Latest Rates Endpoint
{
"success": true,
"timestamp": 1752318056,
"base": "USD",
"date": "2025-07-12",
"rates": {
"TER": 0.000482
},
"unit": "per troy ounce"
}
Historical Rates Endpoint
{
"success": true,
"timestamp": 1752231656,
"base": "USD",
"date": "2025-07-11",
"rates": {
"TER": 0.000485
},
"unit": "per troy ounce"
}
Bid And Ask Endpoint
{
"success": true,
"timestamp": 1752318056,
"base": "USD",
"date": "2025-07-12",
"rates": {
"TER": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 2.0e-6
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "TER",
"amount": 1000
},
"info": {
"timestamp": 1752318056,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Time-Series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-07-05",
"end_date": "2025-07-12",
"base": "USD",
"rates": {
"2025-07-05": {
"TER": 0.000485
},
"2025-07-12": {
"TER": 0.000482
}
},
"unit": "per troy ounce"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-07-05",
"end_date": "2025-07-12",
"base": "USD",
"rates": {
"TER": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
Open/High/Low/Close (OHLC) Price Endpoint
{
"success": true,
"timestamp": 1752318056,
"base": "USD",
"date": "2025-07-12",
"rates": {
"TER": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
Historical LME Endpoint
{
"success": true,
"timestamp": 1752231656,
"base": "USD",
"date": "2025-07-11",
"rates": {
"TER": 0.000485
},
"unit": "per troy ounce"
}
List of Symbols
Metals-API Supported Symbols page. This resource is invaluable for developers looking to integrate various metals into their applications.
Conclusion
Metals-API Website and explore the Metals-API Documentation for detailed implementation guidance.