Skip to Content
v2.0 API now live

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.

XAG +0.00%
Silver
$86.80
XAU +0.00%
Gold
$4,695.42
XPD -0.00%
Palladium
$1,471.51
XPT -0.00%
Platinum
$2,106.39
99.99% Uptime
<10ms Latency
Multi-Source Data

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);
JSON Response
200 OK
{
  "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
    }
  }
}
Latency 8ms
Size 1.2kb