Retrieve Colombian Peso (COP) exchange rates with this API
Retrieve Colombian Peso (COP) Exchange Rates with Metals-API
In today's fast-paced financial landscape, having access to real-time data is crucial for developers and businesses alike. The ability to retrieve Colombian Peso (COP) exchange rates efficiently can empower applications in various sectors, from finance to e-commerce. This is where the Metals-API comes into play, offering a robust solution for accessing real-time and historical exchange rates for metals and currencies.
About Tellurium (TE)
As we delve into the world of metals, it's essential to highlight the role of Tellurium (TE) in the digital transformation of metal markets. This element, while not as commonly discussed as gold or silver, plays a significant role in technological innovation. The integration of smart technologies and data analytics into the metal markets is paving the way for future advancements. With the rise of electric vehicles and renewable energy technologies, Tellurium's importance is expected to grow, making it a vital component in the evolving landscape of metals.
API Description
The Metals-API is designed to provide developers with the tools necessary to build next-generation applications that require real-time metals data. This API is not just about retrieving exchange rates; it represents a transformative potential in how data is utilized in the financial sector. By leveraging the capabilities of the Metals-API, developers can create applications that provide insights into market trends, automate trading strategies, and enhance decision-making processes.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs, allowing developers to access a wealth of information regarding exchange rates and market data. Here are some of the key features:
- Latest Rates Endpoint: Depending on your subscription plan, this endpoint returns real-time exchange rate data updated every 60 minutes or every 10 minutes. This feature is crucial for applications that require up-to-the-minute information.
- Historical Rates Endpoint: Access historical rates dating back to 2019. By appending a specific date (YYYY-MM-DD) to your query, you can retrieve past exchange rates, which is invaluable for trend analysis and forecasting.
- Bid and Ask Endpoint: This powerful feature allows you to retrieve real-time bid and ask prices for various metals, providing insights into market liquidity and pricing dynamics.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint, enabling users to convert amounts from one currency to another seamlessly. This is particularly useful for applications that deal with multiple currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice. This endpoint is ideal for analyzing trends over specific periods.
- Fluctuation Endpoint: Retrieve information about how currencies fluctuate on a day-to-day basis, allowing developers to monitor volatility and make informed decisions.
- Carat Endpoint: Access information about gold rates by carat, which is essential for jewelers and investors in the precious metals market.
- Lowest/Highest Price Endpoint: This endpoint allows you to query the API to get the lowest and highest price for a specified date, aiding in market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: Retrieve OHLC data for a specific time period, which is crucial for traders looking to analyze market movements.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a comprehensive view of market trends.
- API Key: Your unique API key is essential for accessing the API. It must be included in the API base URL's access_key parameter.
- API Response: Exchange rates delivered by the Metals-API are relative to USD by default, ensuring consistency in data interpretation.
- Available Endpoints: The Metals-API features 14 endpoints, each providing distinct functionalities tailored to various needs.
- Supported Symbols Endpoint: This constantly updated endpoint returns all available currencies, ensuring you have access to the latest market data.
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 how to interact with the Metals-API is crucial for effective implementation. 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": 1784333327,
"base": "USD",
"date": "2026-07-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": 1784246927,
"base": "USD",
"date": "2026-07-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": "2026-07-11",
"end_date": "2026-07-18",
"base": "USD",
"rates": {
"2026-07-11": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-07-13": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-07-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": 1784333327,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-07-11",
"end_date": "2026-07-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": 1784333327,
"base": "USD",
"date": "2026-07-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": 1784333327,
"base": "USD",
"date": "2026-07-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
The Metals-API provides a comprehensive solution for developers looking to access real-time and historical exchange rates for metals and currencies, including the Colombian Peso (COP). With its extensive range of endpoints, the API empowers developers to create innovative applications that can analyze market trends, automate trading strategies, and provide valuable insights into the financial landscape.
By utilizing the various features of the Metals-API, such as the Latest Rates, Historical Rates, and Conversion endpoints, developers can build robust applications that cater to the needs of their users. The API's ability to deliver real-time data and historical insights makes it an invaluable tool for anyone involved in the financial markets.
For more information on how to implement these features, refer to the Metals-API Documentation and explore the Metals-API Supported Symbols for a complete list of available currencies and metals.