Gold & Silver API — XAU/XAG via REST
Real-time XAUUSD and XAGUSD price + OHLCV + all 42 indicators. Includes the AI bias endpoint for one-call directional reads.
No credit card. $2.50 PAYG credit on sign up.
One Request. Instant Data.
curl -X GET \
"https://tickatlas.com/v1/indicator?symbol=XAUUSD&indicator=RSI_14&timeframe=H1" \
-H "X-API-Key: YOUR_API_KEY" Why Use TickAtlas?
Pre-Calculated, Sub-100ms
Indicator values are computed server-side on every new candle. Your app queries the result — no TA library, no candle history needed.
7 Timeframes
M1, M5, M15, M30, H1, H4, D1 — the same endpoint serves scalpers and position traders alike.
Forex, Crypto, Commodities
EURUSD, GBPUSD, XAUUSD, BTCUSD, USDJPY — data available for all symbols active on connected broker terminals.
Plug into any stack
- ChatGPT Custom GPTs
- Claude Tools
- Python / pandas
- Node.js
- Discord bots
- Slack webhooks
- n8n
- Zapier
- Google Sheets
Gold API Response
{
"success": true,
"symbol": "XAUUSD",
"indicator": "RSI_14",
"timeframe": "H1",
"value": 58.4,
"signal": "neutral",
"ts": "2026-04-04T14:00:00Z"
}
import requests
# Pull RSI + ATR for gold and silver in two calls
for sym in ("XAUUSD", "XAGUSD"):
rsi = requests.get(
"https://tickatlas.com/v1/indicator",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"symbol": sym, "indicator": "RSI_14",
"timeframe": "H1"},
).json()["value"]
print(sym, "RSI:", rsi)
Use Cases for Gold & Silver Data
ATR-Based Position Sizing
Use XAUUSD ATR(14) to calculate dynamic stop distances and position sizes for gold trades.
AI Bias Trading Signals
Filter gold trade entries using the pre-computed AI confidence score — only trade when confidence > 70%.
Gold/Silver Ratio Monitor
Fetch both XAUUSD and XAGUSD prices to calculate and monitor the gold/silver ratio in real time.
Key Level Alerts
The /v1/summary response includes support/resistance levels — trigger alerts when price approaches them.
Multi-Timeframe Confirmation
Check D1 trend direction with ADX, then find H4 or H1 entry timing with RSI + MACD confluence.
Precious Metals Dashboard
Build a live dashboard showing Gold + Silver prices, indicators, and AI bias for manual traders.
Pricing
Start Building in 5 Minutes
Sign up, grab your API key, make your first request.
Every new account gets $2.50 in free PAYG credits. No card required.