Goldprice.dev
Cross-validated gold, silver & copper spot prices in 13 currencies
Goldprice.dev serves precious-metal spot and futures quotes reconciled across sources, in more than a dozen currencies. The keyless /v1/prices endpoint returns core spot rows; a free account unlocks history, statistics and higher limits. Anonymous calls carry a usage-notice header.
GET https://api.goldprice.dev/v1/prices
{
"symbols": [
{
"symbol": "XAU",
"quote_currency": "AUD",
"unit": "troy_ounce",
"contract_type": "spot",
"price": "6015.4711128",
"is_stale": false,
"computed_at": "2026-07-05T10:29:02.163353+00:00"
}
]
}curl "https://api.goldprice.dev/v1/prices"const res = await fetch("https://api.goldprice.dev/v1/prices");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.goldprice.dev/v1/prices")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/pricesPROBEDCross-validated gold, silver & copper spot prices in 13 currencies
/prices?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Goldprice.dev: common questions
Is Goldprice.dev free to use?
Yes — Goldprice.dev is a free finance API. Free tier: Free keyless tier (limited fields); free account lifts caps. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Goldprice.dev need an API key?
No — Goldprice.dev needs no API key or signup. You can call it straight away; rate limits still apply (Anonymous usage caps apply; exact limit unpublished).
Can I call Goldprice.dev from the browser?
Not directly — Goldprice.dev doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Goldprice.dev up right now?
As of our last scheduled check, Goldprice.dev is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.