WA Client
POST

Check Phones

Verify whether phone numbers are registered on WhatsApp (batch up to 100).

API endpoint
https://waclient.com/api/check_phones
Example:
curl -X POST \
  'https://waclient.com/api/check_phones' \
  -H 'Content-Type: application/json' \
  --data '{
    "numbers": [
        "20100981XXXX",
        "966501234567"
    ],
    "instance_id": "6A4B02A1XXXX",
    "access_token": "EMCUH3NQQK8YXXXX"
}'
Response
{
    "status": "success",
    "message": "Success",
    "data": {
        "results": [
            {
                "number": "20100981XXXX",
                "exists": true,
                "jid": "[email protected]"
            }
        ]
    }
}
ParameterDescription
numbersArray of phone numbers (digits only, with country code)
instance_idYour instance ID
access_tokenYour access token

Command Palette

Search documentation endpoints.

Esc