Help investors track the value of their physical gold and silver holdings.
Investors with physical precious metals need to know their portfolio value. Without current prices, they cannot accurately assess their wealth or make rebalancing decisions.
Build portfolio tracking features with our API. Let users input their holdings and see current valuations for gold and silver updated hourly.
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);