AlQANAAS data for developers and researchers
Open, documented and usable gold data.
Use AlQANAAS public endpoints for XAUUSD, local gold prices and weekly research summaries. No registration or API key is required.
Public endpoints
All endpoints use HTTPS and return a standard success response when data is available. Open a URL directly or request it from a server or browser.
/gold-data.jsonLive XAUUSD, observation time, gram and karat conversions, and country reference prices.
JSON/gold-research-data.jsonStructured weekly open, high, low, close, range and volatility research records.
CSV/gold-research-data.csvThe weekly research record in a spreadsheet and statistical-analysis format.
Quick start
A minimal example that reads the latest price and observation time. Always check the response status and data timestamp before displaying it.
const response = await fetch(
"https://alqanaas.com/gold-data.json"
);
if (!response.ok) throw new Error("Gold data unavailable");
const data = await response.json();
console.log(data.liveXauusd.mid, data.liveXauusd.observedAt);Fields and timing
liveXauusd contains the symbol, bid, ask, mid, unit and observation time. countries contains the country code, currency, reference FX rate and 24K, 22K, 21K and 18K gram values. The methodology object explains every weekly-record calculation.
XAUUSD changes while the market trades. Weekly research updates after new sessions complete, while local-currency values are references and may differ from a retailer's final quote.
Responsible use and attribution
This is informational and research data, not an executable broker or jewellery-store quote and not a buy or sell recommendation. When publishing research figures, preserve the observation date or week key and link to the original dataset so readers can verify them.
For high-volume use or commercial redistribution, review the terms and contact AlQANAAS to avoid unnecessary service load.