Turisshi

Turisshi API

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 Started

Authentication

Access 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:

  1. 1. Login to your Etoga account
  2. 2. Visit the Developer Dashboard
  3. 3. Generate and copy your API key

API Endpoints

Dataset Upload

POST /api/v1/datasets

Upload your dataset for analysis. Supported formats: CSV, JSON, Xlsx

                        
{
    "data": "[base64 encoded dataset]",
    "format": "csv",
    "columns": ["name", "value", "timestamp"]
}
                        
                    

Data Analysis

POST /api/v1/analyze

Request analysis on uploaded datasets. Supports: correlation, clustering, regression.

                        
{
    "dataset_id": "string",
    "analysis_type": "regression|clustering|correlation",
    "parameters": { "target_column": "value" }
}
                        
                    

Visualization Generation

POST /api/v1/visualize

Generate 3D interactive visualizations for datasets.

                        
{
    "dataset_id": "string",
    "visualization_type": "3d-scatter|heatmap|line"
}
                        
                    

Code Examples

JavaScript

                    
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())

Python

                    
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'
    }
)
                    
                

Need Help?

Our developer support team is here to help ensure your experience with Turisshi is seamless and efficient.

Get Developer Support
```