API Documentation

    Integrate our trading tools into your applications with our powerful REST API.

    Get API Key

    Sign up and get your API key

    Make Requests

    Use our RESTful endpoints

    Build Apps

    Create powerful trading tools

    Authentication

    All API requests require authentication using an API key in the Authorization header.

    // Authentication
    const headers = {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json'
    };

    Available Endpoints

    GET/api/indicators/zone-master

    Retrieve Zone Master indicator data

    GET/api/indicators/ai-candle

    Retrieve AI Candle indicator data

    POST/api/journal/entries

    Create a new journal entry

    GET/api/reports/daily

    Get daily performance reports

    Code Examples

    Zone Master Data
    // Get Zone Master Data
    fetch('https://api.tradingtools.com/v1/indicators/zone-master', {
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY'
      }
    })
    .then(response => response.json())
    .then(data => console.log(data));
    Create Journal Entry
    // Create Journal Entry
    fetch('https://api.tradingtools.com/v1/journal/entries', {
      method: 'POST',
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({
        symbol: 'AAPL',
        entry: 150.25,
        exit: 152.80,
        quantity: 100,
        notes: 'Strong breakout pattern'
      })
    });

    Developer Resources

    Postman Collection

    SDK Libraries

    API Status