API Reference
Real-time market data from live broker feeds. 15+ endpoints, 42 technical indicators, 10 timeframes, 100+ instruments.
Quick Start
1. Get your API key
Follow the quickstart guide to create an account and receive a free API key — every new account gets $2.50 in PAYG credits.
2. Make your first request
curl -H "X-API-Key: YOUR_API_KEY" \
"https://tickatlas.com/v1/quote?symbol=EURUSD" 3. Base URL
https://tickatlas.com Authentication
All API requests require an API key passed via the X-API-Key header.
Rate Limits & Errors
Rate limits are per API key, enforced via sliding window. Check response headers.
X-RateLimit-* Market Data
4/v1/quote Quotes
Real-time bid/ask prices for any symbol
View docs →/v1/ohlc OHLCV Candles
Historical candlestick data across 10 timeframes
View docs →/v1/ticks Tick Data
Raw tick-level bid/ask snapshots
View docs →/v1/spread Spread Analysis
Live and historical spread statistics
View docs →Technical Analysis
4/v1/indicator Indicators (42)
RSI, MACD, Bollinger Bands, ADX, Ichimoku, and 37 more
View docs →/v1/multi Multi-Symbol
Batch indicators for up to 10 symbols in one call
View docs →/v1/screener Screener
Filter symbols by indicator thresholds
View docs →/v1/summary Summary / Bias
AI-powered buy/sell/neutral signal with confidence
View docs →Market Intelligence
4/v1/symbols Symbols
List all tradeable instruments with metadata
View docs →/v1/heatmap Heatmap
Currency strength matrix across timeframes
View docs →/v1/sessions Sessions
Active trading sessions (London, NY, Tokyo, Sydney)
View docs →/v1/calendar Economic Calendar
Upcoming economic events with impact ratings
View docs →Real-Time Streaming
1Error Response Format
All errors follow a consistent JSON structure:
{
"success": false,
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded. Retry after 12 seconds."
}
} Interactive API Documentation
Explore the full OpenAPI specification with request/response schemas in ReDoc. ReDoc is generated live by the FastAPI server, so it always matches the deployed API surface.