Liquid Prices.
Solid Wealth.
Real-time and historical precious metal prices delivered through a high-performance REST API by Metal Indicator. Built for developers, trusted by financial institutions.
GET /api/latest?base=USD
No credit card required. 100 requests/mo free.
The Speed of Precious Metals
Engineered for performance, built for scale. Our API provides the speed and reliability required for the most demanding trading environments.
Ultra-Low Latency
Our proprietary engine delivers prices in under 10ms with sub-second update intervals.
Bank-Grade Security
Enterprise encryption and authentication protocols trusted by leading financial institutions.
Global Coverage
Support for 170+ world currencies and 30+ precious, base, and industrial metals.
99.99% Uptime SLA
Redundant server architecture ensures your mission-critical applications never lose the pulse.
AI-Powered Cleansing
Automatic anomaly detection filters out market noise and outlier data points.
Flexible Endpoints
Historical, Latest, Time-Series, and Conversion endpoints to suit any use case.
Interactive API Explorer
Test the Metal Price API directly from your browser with our interactive console.
const res = await fetch('https://api.metalindicator.com//latest?base=USD&symbols=XAU,XAG', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await res.json();
console.log(data.rates.XAU.price);
{
"success": true,
"base": "USD",
"timestamp": 1694567200,
"rates": {
"XAU": {
"price": 2045.30,
"bid": 2044.90,
"ask": 2045.70,
"unit": "troy_oz",
"timestamp": 1694567200
},
"XAG": {
"price": 22.85,
"bid": 22.80,
"ask": 22.90,
"unit": "troy_oz",
"timestamp": 1694567200
}
}
}