Power investment dashboards and trading platforms with current precious metal prices.
Investment platforms need accurate commodity prices to enable trading decisions. Outdated data leads to poor trades and user distrust.
Our Gold Price API delivers spot prices for gold and silver updated hourly. Get prices per gram, kilogram, and troy ounce in 30+ currencies.
const res = await fetch("https://api.apiverve.com/v1/goldprice?currency=USD&hourly=true", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);