WA Client
POST

Check Exist

Check if a single phone number is registered on WhatsApp.

API endpoint
https://waclient.com/api/check_exist
Example:
curl -X POST \
  'https://waclient.com/api/check_exist' \
  -H 'Content-Type: application/json' \
  --data '{
    "number": "20100981XXXX",
    "instance_id": "6A4B02A1XXXX",
    "access_token": "EMCUH3NQQK8YXXXX"
}'
Example:
curl -X GET \
  'https://waclient.com/api/check_exist' \
  -G \
  --data-urlencode 'access_token=EMCUH3NQQK8YXXXX' \
  --data-urlencode 'instance_id=6A4B02A1XXXX' \
  --data-urlencode 'number=20100981XXXX'
Response
{
    "status": "success",
    "message": "Success",
    "data": {
        "number": "20100981XXXX",
        "exists": true,
        "jid": "[email protected]"
    }
}
ParameterDescription
number / contact_idPhone number to check
instance_idYour instance ID
access_tokenYour access token

Command Palette

Search documentation endpoints.

Esc