Retrieve Canadian Dollar (CAD) exchange rates via this API
Retrieve Canadian Dollar (CAD) Exchange Rates via Metals-API
The Canadian Dollar (CAD) is a significant currency in the global market, especially for those involved in trading metals and commodities. With the rise of digital transformation in financial markets, accessing real-time exchange rates has become essential for developers and businesses alike. The Metals-API provides a robust solution for retrieving CAD exchange rates and other metal-related data, empowering developers to create innovative applications that leverage real-time data analytics.
About Tellurium (TE)
Tellurium, represented by the symbol TE, is a metalloid that plays a crucial role in various technological advancements, particularly in the fields of electronics and renewable energy. As the world shifts towards digital transformation, the demand for metals like Tellurium is expected to rise, driven by technological innovation and smart technology integration. The integration of data analytics in metal markets allows for deeper insights into pricing trends and market dynamics, enabling businesses to make informed decisions.
As we explore the capabilities of the Metals-API, itβs essential to understand how this API can transform the way developers interact with metal market data. By providing access to real-time and historical exchange rates, the Metals-API empowers developers to build next-generation applications that can analyze trends, forecast prices, and optimize trading strategies.
API Description
The Metals-API is a powerful tool designed to provide developers with access to real-time metals data, including exchange rates for various currencies, including the Canadian Dollar (CAD). This API is built on a foundation of technological advancement, offering features that allow for seamless integration into applications. With its capabilities, developers can harness the power of data analytics to gain insights into market trends and fluctuations.
For comprehensive information on how to utilize the API, developers can refer to the Metals-API Documentation, which outlines the various endpoints and their functionalities. Additionally, the Metals-API Supported Symbols page provides a complete list of available metal symbols, ensuring that developers can access the data they need for their applications.
Key Features and Endpoints
The Metals-API offers a variety of endpoints, each designed to cater to different needs within the realm of metal trading and currency exchange. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated every 60 minutes, 10 minutes, or even more frequently, depending on the subscription plan. Developers can easily retrieve the latest rates for CAD against various metals, enabling them to make timely trading decisions.
- Historical Rates Endpoint: Access to historical rates dating back to 2019 allows developers to analyze past trends and make informed predictions about future movements. By appending a specific date to the API request, users can retrieve historical exchange rates for CAD and other currencies.
- Bid And Ask Endpoint: This feature enables developers to obtain real-time bid and ask prices for metals, which is crucial for traders looking to execute orders at optimal prices. The bid and ask prices provide insights into market liquidity and can influence trading strategies.
- Convert Endpoint: The conversion endpoint allows users to convert any amount from one currency to another, including conversions involving CAD. This is particularly useful for businesses operating in multiple currencies or for traders looking to assess the value of their holdings in different currencies.
- Time-Series Endpoint: Developers can query the API for daily historical rates between two specified dates, allowing for in-depth analysis of price movements over time. This feature is invaluable for identifying trends and making data-driven decisions.
- Fluctuation Endpoint: This endpoint provides information on how currencies fluctuate on a day-to-day basis, offering insights into market volatility. Understanding fluctuations can help traders manage risk and optimize their trading strategies.
- Carat Endpoint: For those interested in precious metals like gold, the carat endpoint allows users to retrieve gold rates by carat. This feature is essential for jewelers and investors in the gold market.
- Lowest/Highest Price Endpoint: This endpoint allows users to query the API to get the lowest and highest prices for a specified date, providing insights into market extremes that can inform trading decisions.
- Open/High/Low/Close (OHLC) Price Endpoint: Developers can obtain OHLC data for specific time periods, which is critical for technical analysis and understanding market trends.
- Historical LME Endpoint: This endpoint provides access to historical rates for LME symbols dating back to 2008, allowing for comprehensive analysis of market trends over an extended period.
- API Key: Each user is provided with a unique API key that must be included in requests to authenticate access to the API. This ensures secure and controlled access to the data.
- API Response: The Metals-API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format. Understanding the structure of the API response is crucial for developers to effectively utilize the data.
- Available Endpoints: The Metals-API includes 14 different endpoints, each providing unique functionalities tailored to various needs in the metal trading space.
- Supported Symbols Endpoint: This constantly updated endpoint returns all available currencies, ensuring that developers have access to the latest information.
- Intraday Endpoint: For those requiring real-time data, the intraday endpoint allows querying of exchange rate data for a single symbol, providing up-to-the-minute information.
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 Symbols page. This resource is invaluable for developers looking to integrate specific metal data into their applications.
API Endpoint Examples and Responses
Understanding the API responses is crucial for effective integration. Below are examples of various endpoints and their corresponding JSON responses:
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1786406915,
"base": "USD",
"date": "2026-08-11",
"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": 1786320515,
"base": "USD",
"date": "2026-08-10",
"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": "2026-08-04",
"end_date": "2026-08-11",
"base": "USD",
"rates": {
"2026-08-04": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-08-06": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-08-11": {
"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": 1786406915,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-08-04",
"end_date": "2026-08-11",
"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": 1786406915,
"base": "USD",
"date": "2026-08-11",
"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": 1786406915,
"base": "USD",
"date": "2026-08-11",
"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, the Metals-API is a powerful resource for developers looking to retrieve Canadian Dollar (CAD) exchange rates and other metal-related data. With its extensive range of endpoints, including the latest rates, historical data, and conversion capabilities, the API provides the tools necessary for building innovative applications that can analyze market trends and optimize trading strategies. By leveraging the capabilities of the Metals-API, developers can stay ahead in the rapidly evolving landscape of metal trading and financial markets.
For further exploration of the API's capabilities, developers are encouraged to visit the Metals-API Documentation and familiarize themselves with the various endpoints and their functionalities. Additionally, the Symbols List provides valuable insights into the available metal symbols, ensuring that developers can access the data they need for their applications.
As the demand for real-time data continues to grow, the Metals-API stands out as a transformative tool that empowers developers to harness the power of data analytics in the metal markets. By integrating this API into their applications, developers can unlock new possibilities and drive innovation in the financial sector.