Integrate our trading tools into your applications with our powerful REST API.
Sign up and get your API key
Use our RESTful endpoints
Create powerful trading tools
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'
};
/api/indicators/zone-master
Retrieve Zone Master indicator data
/api/indicators/ai-candle
Retrieve AI Candle indicator data
/api/journal/entries
Create a new journal entry
/api/reports/daily
Get daily performance reports
// 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
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'
})
});