Check email exists

Check if an email exists in the system before signup/login

POST
/auth/check-email
AuthorizationBearer <token>

Bearer token authentication. Use your API key as the bearer token.

In: header

Check email input

emailstring

Response Body

curl -X POST "https://eu1.api.bivariant.com/v1/auth/check-email" \  -H "Content-Type: application/json" \  -d '{    "email": "string"  }'
{
  "email": "string",
  "exists": true
}
{
  "code": "string",
  "message": "string"
}
{
  "code": "string",
  "message": "string"
}