🚀 ChatWeb

High-performance, secure chat widget backend powered by Rust & Rocket

Embeddable Chat for your Website

Secure, fast, and easy to integrate. Built with Rust for safety and speed.

Create Free Account View Demo

🛠️ Quick Start

Register a tenant to get your API keys.

POST /auth/register

🔐 Secure Auth

JWT-based authentication for tenant management.

POST /auth/login

💬 Real-time Ready

Poll-based (for now) high performance messaging.

POST /api/chat/send

API Usage

1. Register

curl -X POST http://localhost:8000/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email":"admin@example.com","password":"secure"}'

2. Login

curl -X POST http://localhost:8000/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email":"admin@example.com","password":"secure"}'