Skip to main content
POST
/
auth
/
check-email-exists
Check Email Exists
curl --request POST \
  --url http://localhost:3000/api/auth/check-email-exists \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "exists": true,
  "providers": [
    "<string>"
  ],
  "hasPassword": true
}

Body

application/json
email
string<email>
required

The email address to check

Response

Email check completed

exists
boolean

Whether the email is already registered

providers
string[]

List of authentication providers for this email

hasPassword
boolean

Whether the user has password authentication enabled