Get Nigerian Naira (NGN) prices in your application using this API
Get Nigerian Naira (NGN) Prices in Your Application Using Metals-API
The Nigerian Naira (NGN) is a crucial currency in the West African financial landscape, and accessing real-time pricing data is essential for developers building applications that cater to this market. With the Metals-API, developers can seamlessly integrate real-time metal prices, including those relevant to the Naira, into their applications. This blog post will explore the capabilities of the Metals-API, focusing on its innovative features, endpoints, and how it can transform the way developers access and utilize metals data.
About Nickel (NI)
Nickel is one of the most significant metals in the global market, playing a vital role in various industries, including electronics, automotive, and construction. As the world moves towards digital transformation, the metal markets are also evolving. Technological innovations and advancements in data analytics are reshaping how we understand and interact with metal prices.
Smart technology integration is becoming increasingly important, allowing for real-time data access and insights that were previously unattainable. The future of metal markets, including nickel, is poised for significant changes, driven by the demand for transparency and efficiency. By leveraging the capabilities of the Metals-API, developers can build applications that not only track current prices but also analyze trends and forecast future movements.
API Description
The Metals-API is a powerful tool that provides developers with access to real-time and historical metals data. This API empowers developers to create next-generation applications that can analyze market trends, perform currency conversions, and provide insights into metal prices. With its user-friendly interface and comprehensive documentation, the Metals-API is designed to facilitate seamless integration into various applications.
For more detailed information, developers can refer to the Metals-API Documentation, which outlines all available features and endpoints. Additionally, the Metals-API Supported Symbols page provides a comprehensive list of all available metal symbols, ensuring developers have the necessary resources to implement the API effectively.
Key Features and Endpoints
The Metals-API offers a variety of endpoints that cater to different needs, allowing developers to access real-time and historical data efficiently. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for metals, updated every 60 minutes or more frequently depending on the subscription plan. Developers can easily access the latest prices for metals such as gold, silver, and nickel, which are vital for applications dealing with currency conversions and market analysis.
- Historical Rates Endpoint: Developers can query historical rates dating back to 2019 by appending a specific date to the API request. This feature is particularly useful for analyzing market trends over time and making informed decisions based on past performance.
- Bid And Ask Endpoint: This powerful feature allows developers to retrieve real-time bid and ask prices for metals, providing insights into market liquidity and pricing dynamics.
- Convert Endpoint: The Metals-API includes a dedicated currency conversion endpoint, enabling developers to convert amounts between different metals or to/from USD. This functionality is essential for applications that require real-time conversion rates.
- Time-Series Endpoint: This endpoint allows developers to query daily historical rates between two specified dates, facilitating in-depth analysis of price movements over time.
- Fluctuation Endpoint: Developers can track how metal prices fluctuate on a day-to-day basis, providing valuable insights into market volatility and trends.
- Carat Endpoint: This endpoint provides information about gold rates by carat, which is particularly useful for jewelers and businesses dealing in precious metals.
- Lowest/Highest Price Endpoint: Developers can query the API to obtain the lowest and highest prices for a specified date, allowing for comprehensive market analysis.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides open, high, low, and close prices for a specific date, essential for traders and analysts looking to understand market movements.
- Historical LME Endpoint: Access historical rates for LME symbols dating back to 2008, providing a long-term view of market trends.
- API Key: Each user is provided with a unique API key that must be included in requests to authenticate access to the API.
- API Response: The Metals-API delivers exchange rates relative to USD by default, ensuring consistency in data interpretation.
- Available Endpoints: The API features 14 different endpoints, each designed to provide specific functionalities, making it a versatile tool for developers.
- Supported Symbols Endpoint: This constantly updated endpoint returns all available currencies, ensuring developers have access to the latest information.
- Intraday Endpoint: Developers can query intraday exchange rate data for a single symbol, providing insights into short-term market movements.
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": 1785888665,
"base": "USD",
"date": "2026-08-05",
"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": 1785802265,
"base": "USD",
"date": "2026-08-04",
"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-29",
"end_date": "2026-08-05",
"base": "USD",
"rates": {
"2026-07-29": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-07-31": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-08-05": {
"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": 1785888665,
"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-29",
"end_date": "2026-08-05",
"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": 1785888665,
"base": "USD",
"date": "2026-08-05",
"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": 1785888665,
"base": "USD",
"date": "2026-08-05",
"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 an invaluable resource for developers looking to integrate real-time and historical metals data into their applications. With its comprehensive range of endpoints, including the latest rates, historical data, and conversion capabilities, developers can create powerful applications that cater to the needs of the Nigerian market and beyond. By leveraging the capabilities of the Metals-API, developers can enhance their applications with real-time insights, enabling users to make informed decisions based on accurate and up-to-date information.
For further exploration, developers are encouraged to visit the Metals-API Documentation for detailed guidance on implementation and usage. Additionally, the Symbols List provides essential information on available metal symbols, ensuring that developers have the necessary tools to succeed in their projects.