Skip to main content
GET
/
api
/
v1
/
auth
/
users
/
check
/
email
Check if user exists by email
curl --request GET \
  --url https://crypto.westminister.tech/api/v1/auth/users/check/email \
  --header 'Authorization: Bearer <token>'
{
  "exists": true,
  "email": "tigger.germain@gmail.com"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

email
string<email>
required

User email address.

Response

200 - application/json

Email existence result

exists
boolean

Whether a user with the email exists.

email
string<email>

The email checked.