Check whether a number is registered

This command checks whether a number is registered in WhatsApp.

To check a number, send a POST request to:

https://whatsgate.org/api/v1/check

The request body must contain the following object:

{
  "WhatsappID": "YOUR_WHATSAPP_ID",
  "number": "79991112233"
}
  • WhatsappID - WhatsApp identifier in the system
  • number - phone number in digits only, including country code, for example 79991112233

Successful response object

{
  "result": "OK",
  "data": true
}

data - if true, the number is registered in WhatsApp; if false, it is not.