⬇️
Total Downloads
0
All time
📅
This Month
0
Last 30 days
📊
This Week
0
Last 7 days
🔥
Active Users
0
Last 24 hours

Download Trends

Quick Stats

Latest Version

2.0.0

API Status

🟢 Online

Last Updated

Loading...

Support Tickets

0

Current Release

🪟

QauT.zip

Windows Desktop Application

Version: 2.0.0 Size: ~150 MB Downloads: 0

Download History

Date Version Downloads Status
2026-05-14 2.0.0 0 Available
2026-05-07 1.9.5 0 Archived

API Response Time

Average: 145ms

Request Volume

Last hour: 0

Error Rate

Today: 0.01%

Active Connections

Current: 0

Server Health

CPU Usage
35%
Memory Usage
62%
Database Load
28%
Disk Space
45%

Your API Key

⚠️ Keep your API key secure. Never share it publicly.

Endpoints

GET /api/health

Check if the API is online

POST /api/auth/login

Authenticate user and get JWT token

GET /api/support/tickets

Get support tickets (requires auth)

POST /api/support/tickets

Create a new support ticket

Quick Start

// Get your API key from the dashboard above
const API_KEY = 'sk_live_abcdef123456789';

// Make authenticated requests
fetch('https://qaut.gg/api/users/me', {
  headers: {
    'Authorization': `Bearer ${API_KEY}`
  }
})
.then(res => res.json())
.then(data => console.log(data));