Skip to content

Authentication

GET /auth/session

Response:

{
"authenticated": true,
"user": {}
}
POST /auth/login

Request body:

{
"email": "string",
"password": "string"
}

Response:

{
"authenticated": true,
"user": {}
}
POST /auth/logout

Response:

{
"ok": true
}