Secure your API requests with API key authentication
All API requests require authentication using your API key. You can find your API key in your dashboard under Settings → Account.
Authorization: Bearer YOUR_API_KEY
curl https://aiworkers.vip/api/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "Hello",
"sessionId": "unique-session-id"
}'Your API key provides full access to your account. Keep it secure and never share it publicly. If you suspect your key has been compromised, regenerate it immediately from your dashboard.