GET
/v1/summary Market Summary — AI Bias Endpoint
A single call that returns an aggregated bullish / bearish / neutral bias, a 0–100 confidence score, key support/resistance levels, and a plain-English narrative explaining the call. Powered by all 42 indicators we maintain for the symbol.
Request cURL
bash
curl -H "X-API-Key: YOUR_API_KEY" \
"https://tickatlas.com/v1/summary?symbol=XAUUSD&timeframe=H1" Response 200 OK · application/json
json
{
"success": true,
"symbol": "XAUUSD",
"timeframe": "H1",
"bias": "bullish",
"confidence": 82,
"narrative": "Gold is breaking above the 20-EMA with RSI divergence confirming momentum. MACD histogram expanding. Key resistance at 2,342.",
"indicators_analyzed": 42,
"key_levels": {
"support": [2318.50, 2305.20],
"resistance": [2342.00, 2358.75]
}
} Query parameters
- symbol
- Required. Symbol code (e.g.
XAUUSD,EURUSD,BTCUSD). - timeframe
- Optional, default
H1. One of M1, M5, M15, M30, H1, H4, D1.
Response fields
- bias
- String — one of
bullish,bearish,neutral. - confidence
- Integer 0–100. Threshold to filter weak signals.
- narrative
- Plain-English explanation, safe to embed directly in LLM prompts or alerts.
- key_levels
- Support / resistance arrays, two values each.
Tip: See the
Market Sentiment API landing page
for a full LLM-integration example, or the
AI Summary product page
for a product-level walkthrough.