Skip to Content
🎉 New release with new features and improvements! V0.0.2 Release →

Login

Authenticate a user with email and password.

POST /api/auth/login

Request Body

{ "email": "user@example.com", "password": "password123" }

Response

{ "data": [ { "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", } ] ... }