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.

AuthenticationNo API key
Browser accessCORS enabled
Data timingTimestamped responses
01
02

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);
03

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.

04

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.