High-performance, secure chat widget backend powered by Rust & Rocket
Secure, fast, and easy to integrate. Built with Rust for safety and speed.
Register a tenant to get your API keys.
POST /auth/register
JWT-based authentication for tenant management.
POST /auth/login
Poll-based (for now) high performance messaging.
POST /api/chat/send
curl -X POST http://localhost:8000/auth/register \
-H "Content-Type: application/json" \
-d '{"email":"admin@example.com","password":"secure"}'
curl -X POST http://localhost:8000/auth/login \
-H "Content-Type: application/json" \
-d '{"email":"admin@example.com","password":"secure"}'