Sign In
Auth Endpoints
Sign In
Authenticate a user with email and password
POST
Sign In
Authenticates an existing user by email and password. Returns an access token, refresh token, and the user’s profile.Documentation Index
Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
Body Parameters
User’s registered email address.
User’s password.
Response
true on successful authentication.Short-lived JWT access token. Expires in 30 minutes.
Long-lived JWT refresh token. Expires in 30 days. Use it to request a new
access token when the current one expires.
The authenticated user’s profile.
Error Responses
User Not Found — 403
User Not Found — 403
Invalid Credentials — 403
Invalid Credentials — 403
Wrong Password — 401
Wrong Password — 401
See Also
useAuthhook —signInWithEmailAndPassword- Built-in Auth guide

