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
- Subscribe to the Business plan.
- Go to Settings → API Access.
- Click Generate API Key.
- Copy your secret key — it is displayed only once.
- Include the secret key in the
Authorizationheader 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": [...]
}