Get Lead (LEAD) Historical Prices using this API

Get Lead (LEAD) Historical Prices using this API
Metals-API Information
About Lead (LEAD)
API Description
Metals-API Documentation. This resource provides comprehensive guidance on using the API effectively, including endpoint descriptions, parameter details, and example responses.
Key Features and Endpoints
- Latest Rates Endpoint: This endpoint provides real-time exchange rate data for Lead and other metals. Depending on the subscription plan, users can receive updates at varying frequencies, ensuring they have access to the most current market information.
- Historical Rates Endpoint: Users can access historical rates for Lead dating back to 2019. By appending a specific date to the API request, developers can retrieve historical price data, which is essential for trend analysis and forecasting.
- Bid and Ask Endpoint: This feature allows users to retrieve real-time bid and ask prices for Lead. Understanding the bid-ask spread is crucial for traders and investors looking to make informed decisions in the market.
- Convert Endpoint: The Metals-API includes a currency conversion endpoint, enabling users to convert amounts between different metals or to/from USD. This feature is particularly useful for businesses operating in multiple currencies.
- Time-Series Endpoint: This endpoint allows users to query daily historical rates between two specified dates. It is ideal for analyzing price movements over time and identifying patterns in the Lead market.
- Fluctuation Endpoint: Users can track how Lead prices fluctuate on a day-to-day basis. This endpoint provides insights into market volatility, helping businesses manage risk effectively.
- Open/High/Low/Close (OHLC) Price Endpoint: This feature allows users to retrieve the open, high, low, and close prices for Lead over a specified time period. This data is essential for technical analysis and trading strategies.
- Historical LME Endpoint: For users interested in the London Metal Exchange (LME) rates, this endpoint provides historical data dating back to 2008. It is invaluable for understanding long-term trends in Lead pricing.
- API Key: Each user is assigned a unique API key that must be included in API requests. This key ensures secure access to the Metals-API and helps manage usage limits.
- API Response: The API delivers exchange rates relative to USD by default. All data is returned in a structured JSON format, making it easy for developers to integrate into their applications.
- Available Endpoints: The Metals-API offers multiple endpoints, each designed for specific functionalities. Developers can explore the full range of available endpoints in the Metals-API Supported Symbols list.
- News Endpoint: This feature allows users to retrieve the latest news articles related to Lead and other metals, providing context and insights into market movements.
API Endpoint Examples and Responses
Latest Rates Endpoint
{
"success": true,
"timestamp": 1747354697,
"base": "USD",
"date": "2025-05-16",
"rates": {
"LEAD": 0.000482
},
"unit": "per troy ounce"
}
Historical Rates Endpoint
{
"success": true,
"timestamp": 1747268297,
"base": "USD",
"date": "2025-05-15",
"rates": {
"LEAD": 0.000485
},
"unit": "per troy ounce"
}
Time-series Endpoint
{
"success": true,
"timeseries": true,
"start_date": "2025-05-09",
"end_date": "2025-05-16",
"base": "USD",
"rates": {
"2025-05-09": {
"LEAD": 0.000485
},
"2025-05-11": {
"LEAD": 0.000483
},
"2025-05-16": {
"LEAD": 0.000482
}
},
"unit": "per troy ounce"
}
Convert Endpoint
{
"success": true,
"query": {
"from": "USD",
"to": "LEAD",
"amount": 1000
},
"info": {
"timestamp": 1747354697,
"rate": 0.000482
},
"result": 0.482,
"unit": "troy ounces"
}
Fluctuation Endpoint
{
"success": true,
"fluctuation": true,
"start_date": "2025-05-09",
"end_date": "2025-05-16",
"base": "USD",
"rates": {
"LEAD": {
"start_rate": 0.000485,
"end_rate": 0.000482,
"change": -3.0e-6,
"change_pct": -0.62
}
},
"unit": "per troy ounce"
}
OHLC (Open/High/Low/Close) Endpoint
{
"success": true,
"timestamp": 1747354697,
"base": "USD",
"date": "2025-05-16",
"rates": {
"LEAD": {
"open": 0.000485,
"high": 0.000487,
"low": 0.000481,
"close": 0.000482
}
},
"unit": "per troy ounce"
}
Bid/Ask Endpoint
{
"success": true,
"timestamp": 1747354697,
"base": "USD",
"date": "2025-05-16",
"rates": {
"LEAD": {
"bid": 0.000481,
"ask": 0.000483,
"spread": 2.0e-6
}
},
"unit": "per troy ounce"
}
Conclusion
Metals-API Website and explore the Metals-API Documentation for detailed guidance. Additionally, check out the Metals-API Supported Symbols page to discover the full range of metal symbols available through the API.