TickAtlas
REST + WebSocket API

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

bash
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.

Header X-API-Key: YOUR_KEY
Key format claw_...
Get a key Free signup

Rate Limits & Errors

Rate limits are per API key, enforced via sliding window. Check response headers.

Free plan 30 req/min, 1K/day
Starter 120 req/min, 10K/day
Pro 600 req/min, 100K/day
Headers X-RateLimit-*

Market Data

4

Technical Analysis

4

Market Intelligence

4

Real-Time Streaming

1

Error Response Format

All errors follow a consistent JSON structure:

json
{
  "success": false,
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit exceeded. Retry after 12 seconds."
  }
}
200
Success
400
Bad Request
429
Rate Limited
500
Server Error

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.