POST
Check Phones
Verify whether phone numbers are registered on WhatsApp (batch up to 100).
API endpoint
https://api.waclient.com/check_phonesExample:
curl -X POST \
'https://api.waclient.com/check_phones' \
-H 'Content-Type: application/json' \
--data '{
"numbers": [
"201234567890",
"966501234567"
],
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"results": [
{
"number": "201234567890",
"exists": true,
"jid": "[email protected]"
}
]
}
}| Parameter | Description |
|---|---|
| numbers | Digits only (201234567890). No @. Pass as an array. |
| instance_id | Your instance ID |
| access_token | Your access token |