Access Djiboutian Franc (DJF) Exchange Rates API Documentation in JSON Format
Access Djiboutian Franc (DJF) Exchange Rates API Documentation in JSON Format
In today's rapidly evolving financial landscape, having access to real-time data is crucial for developers and businesses alike. The Metals-API provides a powerful solution for retrieving exchange rates, including the Djiboutian Franc (DJF), in a convenient JSON format. This blog post will delve into the capabilities of the Metals-API, exploring its features, endpoints, and practical applications for developers looking to integrate exchange rate data into their applications.
Metals-API Information
About Tellurium (TE)
As the world embraces digital transformation, the metal markets are also undergoing significant changes. The integration of technological innovations and advancements in data analytics is reshaping how we interact with metals and their associated currencies. The Metals-API stands at the forefront of this transformation, offering developers the tools needed to harness real-time metals data effectively. With smart technology integration, developers can create applications that not only provide current exchange rates but also analyze trends and forecast future movements in the market.
By leveraging the power of data analytics, developers can gain insights into market behavior, enabling them to make informed decisions. The future of metal markets is bright, with possibilities for enhanced trading strategies, improved risk management, and more efficient operations. The Metals-API empowers developers to build next-generation applications that can adapt to the ever-changing landscape of the financial world.
API Description
The Metals-API is designed to provide comprehensive access to metals prices and currency conversion in a user-friendly JSON format. This API offers a variety of endpoints that cater to different needs, whether you are looking for real-time exchange rates, historical data, or specific price fluctuations. The API's capabilities extend beyond mere data retrieval; it empowers developers to create applications that can analyze and visualize this data in meaningful ways.
For more detailed information, you can visit the Metals-API Documentation, which provides extensive guidance on how to utilize the API effectively. Additionally, the Metals-API Supported Symbols page offers a comprehensive list of all available metal symbols, including the Djiboutian Franc (DJF).
Key Features and Endpoints
The Metals-API boasts a range of features that cater to various use cases. Here are some of the key endpoints and their functionalities:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data, updated every 60 minutes, 10 minutes, or even more frequently, depending on your subscription plan. This feature is essential for applications that require up-to-the-minute pricing information.
- Historical Rates Endpoint: Access historical rates dating back to 2019 by appending a specific date (YYYY-MM-DD) to the API request. This is particularly useful for analyzing trends over time and making informed decisions based on past performance.
- Bid And Ask Endpoint: Retrieve real-time bid and ask prices for metals, allowing developers to implement trading strategies that rely on current market conditions.
- Convert Endpoint: This endpoint enables users to convert any amount from one currency to another, facilitating seamless transactions across different currencies.
- Time-Series Endpoint: Query the API for daily historical rates between two dates of your choice, providing insights into price movements over specific periods.
- Fluctuation Endpoint: Track how currencies fluctuate on a day-to-day basis, which is invaluable for understanding market volatility.
- Carat Endpoint: Retrieve information about gold rates by carat, allowing for precise calculations in jewelry and investment contexts.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date, helping traders identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: Access open, high, low, and close prices for a specific date, 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 required to authenticate requests, ensuring secure access to the API.
- API Response: Exchange rates are delivered relative to USD by default, with all data returned in a structured JSON format.
- Available Endpoints: The Metals-API features 14 different endpoints, each designed to provide specific functionalities tailored to user needs.
- Supported Symbols Endpoint: Access a constantly updated list of all available currencies, ensuring you have the latest information at your fingertips.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping you informed about market developments.
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 metals into their applications.
API Endpoint Examples and Responses
Latest Rates Endpoint
Get real-time exchange rates for all available metals:
{
"success": true,
"timestamp": 1775891276,
"base": "USD",
"date": "2026-04-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": 1775804876,
"base": "USD",
"date": "2026-04-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-04-04",
"end_date": "2026-04-11",
"base": "USD",
"rates": {
"2026-04-04": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-04-06": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-04-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": 1775891276,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates:
{
"success": true,
"fluctuation": true,
"start_date": "2026-04-04",
"end_date": "2026-04-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": 1775891276,
"base": "USD",
"date": "2026-04-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": 1775891276,
"base": "USD",
"date": "2026-04-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
The Metals-API is an invaluable resource for developers seeking to access real-time exchange rates, including the Djiboutian Franc (DJF), in a structured JSON format. With its extensive range of endpoints, developers can retrieve the latest rates, historical data, and fluctuations, enabling them to build robust applications that respond to market dynamics. The API's capabilities extend beyond simple data retrieval, offering insights and analytics that can drive informed decision-making.
By integrating the Metals-API into your applications, you can leverage the power of real-time data to enhance trading strategies, improve risk management, and optimize operations. For more information on how to get started, refer to the Metals-API Documentation and explore the Metals-API Supported Symbols for a complete list of available currencies.
As the financial landscape continues to evolve, staying ahead of the curve requires access to reliable data and innovative tools. The Metals-API equips developers with the resources they need to navigate this dynamic environment effectively.