API Documentation

Access, explore, and integrate with our powerful API endpoints. Everything you need to build on top of our platform in one place.

Available Endpoints

/search

GET searches across all indexed documents with real-time results.

GET ? q=query

/api/status

GET current system health, version, and maintenance status.

GET

/data/export

POST request to download filtered dataset in multiple formats.

POST

Sample API Usage


// JavaScript example with Fetch API
fetch('https://asasasasasasasasasasasasasasasasasasasasasasasasas/api/data/export', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'Authorization': 'Bearer YOUR_API_KEY'
    },
    body: JSON.stringify({
        format: 'csv',
        filters: {
            date: '2025-09-08',
            type: 'summary'
        }
    })
})
.then(response => response.blob())
.then(blob => {
    const url = window.URL.createObjectURL(blob);
    const a = document.createElement('a');
    a.href = url;
    a.download = 'export.csv';
    a.click();
});
                
                

Authentication

All endpoints require a valid Bearer token in the Authorization header. Generate API keys in your account settings or contact support for enterprise access.

// Authorization format Authorization: Bearer abcdefghijklmnopqrstuvwxyz123456
// Rotate keys regularly for security