Check if user exists

Checks if a user exists by UID or email. This endpoint is public and is used to verify user existence before registration.

Query Parameters
  • uid
    Type: string

    User UID to check

  • email
    Type: string

    User email to check

Responses
  • application/json
Request Example for get/v1/user-exists
curl 'https://api.signstack.ai/v1/user-exists?uid=&email='
{
  "uidExists": true,
  "emailExists": true
}