Power your applications with real-time data visualization through the most advanced analytics platform. Access our comprehensive API with easy integration and extensive documentation.
Getting StartedAccess our API with secure authentication. You'll need to include your API key in the headers of all requests:
// JavaScript Example
fetch('https://api.etoga.com/analyze', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
To retrieve your API key:
Upload your dataset for analysis. Supported formats: CSV, JSON, Xlsx
{
"data": "[base64 encoded dataset]",
"format": "csv",
"columns": ["name", "value", "timestamp"]
}
Request analysis on uploaded datasets. Supports: correlation, clustering, regression.
{
"dataset_id": "string",
"analysis_type": "regression|clustering|correlation",
"parameters": { "target_column": "value" }
}
Generate 3D interactive visualizations for datasets.
{
"dataset_id": "string",
"visualization_type": "3d-scatter|heatmap|line"
}
fetch('/api/v1/visualize', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
dataset_id: '123456',
visualization_type: '3d-scatter'
})
}).then(response => response.json())
import requests
response = requests.post(
'https://api.etoga.com/api/v1/analyze',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={
'dataset_id': '123456',
'analysis_type': 'clustering'
}
)
Our developer support team is here to help ensure your experience with Turisshi is seamless and efficient.
Get Developer Support