📚 Quick Start

Base URL: https://multiaihub.store/api/v1

All API requests require authentication (coming soon)

Available Endpoints

GET /api/v1/status

Get overall system status

{ "status": "operational", "uptime": 99.8, "services": { "email": "online", "proxy": "online", "storage": "healthy" } }
GET /api/v1/services

List all running services

{ "containers": 35, "services": [ { "id": "CT155", "name": "mail-server", "ip": "192.168.5.155", "status": "running" } ] }
POST /api/v1/proxy

Fetch a URL through the proxy

POST /api/v1/proxy Content-Type: application/json { "url": "https://example.com", "method": "GET" }
GET /api/v1/storage

Get storage statistics

{ "total": "250TB", "used": "117TB", "available": "133TB", "percentage": 46.8 }
GET /api/v1/health

Health check endpoint

{ "status": "healthy", "timestamp": "2026-02-28T22:00:00Z", "version": "1.0.0" }

🔐 Authentication (Coming Soon)

API authentication will use JWT tokens. Stay tuned for updates.

Authorization: Bearer YOUR_API_TOKEN

📖 Additional Resources