Authentication API
Aerocall provides a robust authentication system out of the box. All endpoints are under:
/api/v1/public/projects/:projectSlug/authEndpoints
| Endpoint | Description |
|---|---|
| POST /register | Create new users |
| POST /login | Authenticate with email and password |
| GET /me | Get current user (requires JWT) |
| POST /otp/send | Send one-time code for passwordless login |
| POST /otp/verify | Verify OTP and get JWT |
| GET /verify-email | Verify email with token from email |
| POST /resend-verification | Resend verification email |
| POST /reset-password-request | Request password reset email |
| POST /reset-password | Set new password with reset token |
Each endpoint page includes request/response shapes, error codes, available hooks, and a Try it playground where applicable.