TickAtlas

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.

XAUUSD + XAGUSD H1
$2,384.21 $28.42 XAU/USD (gold) XAG/USD (silver) XAU/XAG ratio · 83.9
XAU: $2,384.21 · XAG: $28.42 Trending Updated 2s ago

One Request. Instant Data.

REQUEST
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

JSON Response
{
  "success": true,
  "symbol": "XAUUSD",
  "indicator": "RSI_14",
  "timeframe": "H1",
  "value": 58.4,
  "signal": "neutral",
  "ts": "2026-04-04T14:00:00Z"
}
Python Example
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.

Every new account gets $2.50 in free API credits

Pricing

Pay-As-You-Go
$2.50 free credit

~$0.001/call. Perfect for testing gold indicator logic.

Start Free
Most Popular
Starter
$29 /month

Unlimited calls for gold trading bots and dashboards.

Get Started
Pro
$79 /month

High-frequency gold alerts, multi-timeframe scans, team access.

Get Started

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.