API Documentation

Sign in →

Overview

The TradingAtlas API provides programmatic access to your trading data, analytics, and risk tools. Use it to build custom dashboards, automate reporting, or integrate with existing data pipelines.

Requirements

Business plan required. API access is available to Business plan subscribers (€49/month). Free and Pro users will receive a 403 response.

Base URL

https://api.tradingatlas.net/api/public/v1

Getting Started

  1. Subscribe to the Business plan.
  2. Go to Settings → API Access.
  3. Click Generate API Key.
  4. Copy your secret key — it is displayed only once.
  5. Include the secret key in the Authorization header of each request.

Pagination

All list endpoints support offset pagination with page and pageSize query parameters.

  • page — Page number (starts at 1)
  • pageSize — Items per page (max 100, default 20)
json
{
  "page": 1,
  "pageSize": 20,
  "total": 921,
  "items": [...]
}