Appearance
Authentication API
All authentication endpoints are handled by Better Auth and prefixed with /auth/.
Base URL
- Local:
https://api.jubiloop.localhost/auth - Development:
https://dev-api.jubiloop.ca/auth - Production:
https://api.jubiloop.ca/auth
Authentication Method
Session-based authentication using HTTP-only cookies. After successful login, session cookies are automatically included in subsequent requests.
Documentation
For complete authentication API documentation, including all available endpoints, request/response formats, and error codes, see the Better Auth documentation.
Integration Details
Jubiloop integrates Better Auth with:
- Session Storage: Redis for scalable session management
- Database: PostgreSQL for user and organization data
- Organization Support: Multi-tenant workspace functionality
- Password Hashing: Argon2 for secure password storage
For implementation details, see the Authentication Feature Documentation.