AI Trading API — LLM-Ready Market Analysis
Natural-language market analysis with bias, confidence, and key levels. Designed for LLM agents, AI trading systems, and automated decision support.
-
AI Market Summary
/v1/summary returns natural-language analysis with bias (bullish/bearish/neutral), confidence percentage, and supporting reasoning.
-
LLM Function Calling
Define API endpoints as Claude/ChatGPT tools. The LLM decides when to get summaries, check indicators, or scan the market.
-
Structured + Natural Language
Get both: structured indicator data (RSI: 67.3) and natural language analysis ("bullish momentum building"). Best of both worlds for AI.
-
Key Price Levels
AI identifies support and resistance levels, giving your LLM agent actionable price targets for entry and exit decisions.
-
Confidence Scoring
Every summary includes a confidence percentage. Your AI agent can threshold on confidence: only act on signals above 75%.
-
Market Screening
/v1/screener lets your AI agent discover opportunities. "Find all pairs where RSI is below 30" — the AI tool does the scanning.
AI Summary API Response
curl -H "X-API-Key: YOUR_KEY" \
"https://tickatlas.com/v1/summary?symbol=EURUSD"
# Response:
{
"success": true,
"data": {
"symbol": "EURUSD",
"bias": "bullish",
"confidence": 0.78,
"summary": "EURUSD shows bullish momentum across H4 and D1 timeframes. RSI at 62.4 indicates room for further upside without being overbought. MACD histogram is positive and expanding. Price is above the Ichimoku cloud on both timeframes.",
"key_levels": {
"resistance": [1.0950, 1.1020],
"support": [1.0880, 1.0820]
},
"indicators_summary": {
"trend": "bullish",
"momentum": "positive",
"volatility": "normal"
}
}
}
# This response is designed to be injected into an LLM prompt
# for data-grounded trading reasoning AI Trading Endpoints
| Endpoint | AI Use | Output |
|---|---|---|
/v1/summary | Primary context source | Natural language + structured |
/v1/indicator | LLM tool: check indicator | Single value |
/v1/screener | LLM tool: scan market | Matching symbols |
/v1/multi | Broad market context | Multi-symbol data |
/v1/heatmap | Market sentiment | Currency strength |
Frequently Asked Questions
What makes this an "AI trading" API?
The /v1/summary endpoint provides AI-powered market analysis with natural-language output including trend bias (bullish/bearish/neutral), confidence percentage, key support/resistance levels, and supporting evidence. This is designed to be consumed by LLMs and AI agents.
Can I use this with ChatGPT or Claude?
Yes. Define the API endpoints as LLM tools/functions. The AI agent can call /v1/summary for context, /v1/indicator for specific data points, and /v1/screener to scan the market — all autonomously.
Is the AI analysis generated by an LLM?
The /v1/summary synthesizes information from multiple indicators and market conditions into a structured analysis. It provides the kind of context that LLMs need to reason about markets with real data.
How is this different from the regular indicator API?
The regular indicator endpoints return raw numbers (RSI: 67.3). The AI summary interprets those numbers into actionable analysis ("Bullish bias, 78% confidence. Key resistance at 1.0950. RSI showing momentum without being overbought.").
What is the rate limit for the AI summary endpoint?
AI summary counts as 5x base rate per request due to its computational cost. Pro plan (100K req/day) effectively gives you 20K summary calls per day — more than enough for most AI agent workflows.
Ground Your AI in Real Market Data
14-day free trial. AI-ready market analysis for LLM agents and automated trading systems.