API Documentation
Auth Endpoints
Login (password)
POST
/
api
/
auth
/
password
/
login
curl --request POST \
--url https://your-bknd.io/api/auth/password/login \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>"
}'
{
"user": {
"id": "<string>",
"email": "<string>",
"name": "<string>"
}
}
Body
application/json
Response
200 - application/json
User
The response is of type object
.
curl --request POST \
--url https://your-bknd.io/api/auth/password/login \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>"
}'
{
"user": {
"id": "<string>",
"email": "<string>",
"name": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.