Get Saint Helenian Pound (SHP) Historical Prices using this API
Get Saint Helenian Pound (SHP) Historical Prices using this API
The Saint Helenian Pound (SHP) is a currency that holds significant value in the global market, particularly for those interested in trading and investing in metals. To effectively track the historical prices of SHP and other currencies, developers can leverage the capabilities of the Metals-API. This powerful tool provides real-time and historical data on various metals and currencies, enabling developers to create innovative applications that can analyze trends, perform conversions, and much more.
Metals-API Information
About Neodymium (ND)
Neodymium, a rare earth metal, is increasingly becoming a focal point in the digital transformation of metal markets. As industries evolve, the demand for neodymium is expected to rise, particularly in sectors such as renewable energy and electronics. The integration of smart technologies and data analytics is revolutionizing how we understand and interact with metal markets. By utilizing the Metals-API, developers can access comprehensive data that empowers them to build applications capable of providing insights into market trends and fluctuations.
Technological innovations in the field of data analytics are enabling businesses to make informed decisions based on real-time data. The Metals-API serves as a bridge between raw data and actionable insights, allowing developers to harness the power of historical and current market data. As we look towards the future, the possibilities for integrating advanced analytics and machine learning into metal trading applications are vast, paving the way for smarter, more efficient market strategies.
API Description
The Metals-API is designed to provide developers with a robust platform for accessing real-time and historical metals data. With its user-friendly interface and comprehensive documentation, developers can easily integrate the API into their applications. The API supports a variety of endpoints that cater to different needs, from retrieving the latest rates to accessing historical data dating back to 2019.
One of the standout features of the Metals-API is its ability to deliver real-time exchange rate data. Depending on the subscription plan, users can receive updates every 60 minutes or even every 10 minutes. This level of granularity is crucial for developers looking to build applications that require up-to-the-minute data for accurate analysis and decision-making.
Moreover, the API allows users to query historical rates by appending a specific date to the endpoint, making it easy to retrieve past data for analysis. This feature is particularly useful for developers interested in creating applications that track trends over time or analyze the impact of market events on metal prices.
Key Features and Endpoints
The Metals-API offers a variety of endpoints, each designed to serve specific functionalities. Here are some of the key features:
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for various metals. Depending on your subscription plan, you can receive updates every 60 minutes or more frequently. The response includes the base currency, date, and rates for different metals.
- Historical Rates Endpoint: Access historical exchange rates for any date since 2019. By appending a date to the endpoint, developers can retrieve past rates, which is essential for trend analysis.
- Bid And Ask Endpoint: This feature allows users to retrieve real-time bid and ask prices for metals, providing insights into market liquidity and pricing.
- Convert Endpoint: The API includes a currency conversion endpoint, enabling users to convert amounts from one currency to another seamlessly.
- Time-Series Endpoint: This endpoint allows developers to query daily historical rates between two specified dates, making it easier to analyze trends over time.
- Fluctuation Endpoint: Users can track how currencies fluctuate on a day-to-day basis, providing valuable insights into market volatility.
- Carat Endpoint: This feature allows users to retrieve information about gold rates by carat, which is particularly useful for jewelers and investors.
- Lowest/Highest Price Endpoint: Query the API to get the lowest and highest prices for a specified date, helping users identify market extremes.
- Open/High/Low/Close (OHLC) Price Endpoint: This endpoint provides 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, allowing for comprehensive market analysis.
- API Key: Your unique API key is required to access the API, ensuring secure and authorized usage.
- API Response: The API delivers exchange rates relative to USD by default, with all data returned in a structured JSON format.
- Available Endpoints: The Metals-API features 14 different endpoints, each providing unique functionalities to cater to various user needs.
- Supported Symbols Endpoint: This endpoint returns all available currencies, allowing developers to stay updated on the symbols they can use.
- News Endpoint: Retrieve the latest news articles related to various metals, keeping users informed about market trends and 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 Metals-API Supported Symbols page. This resource is invaluable for developers looking to understand the various metals available for trading and analysis.
API Endpoint Examples and Responses
Latest Rates Endpoint
Get real-time exchange rates for all available metals.
{
"success": true,
"timestamp": 1770595966,
"base": "USD",
"date": "2026-02-09",
"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": 1770509566,
"base": "USD",
"date": "2026-02-08",
"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-02-02",
"end_date": "2026-02-09",
"base": "USD",
"rates": {
"2026-02-02": {
"XAU": 0.000485,
"XAG": 0.03825,
"XPT": 0.000915
},
"2026-02-04": {
"XAU": 0.000483,
"XAG": 0.0382,
"XPT": 0.000913
},
"2026-02-09": {
"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": 1770595966,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
Track rate fluctuations between two dates.
{
"success": true,
"fluctuation": true,
"start_date": "2026-02-02",
"end_date": "2026-02-09",
"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": 1770595966,
"base": "USD",
"date": "2026-02-09",
"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": 1770595966,
"base": "USD",
"date": "2026-02-09",
"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 access real-time and historical data on metals and currencies, including the Saint Helenian Pound (SHP). With its comprehensive range of endpoints and robust features, the API empowers developers to create innovative applications that can analyze market trends, perform conversions, and provide insights into price fluctuations.
By leveraging the capabilities of the Metals-API, developers can stay ahead of the curve in the rapidly evolving metal markets. Whether you're interested in tracking the historical prices of neodymium or analyzing the latest trends in gold and silver, the Metals-API provides the tools necessary to succeed. For more information, be sure to check out the Metals-API Documentation and explore the Metals-API Supported Symbols for a complete list of available options.