POST
Validate WhatsApp Number
Check if one or more phone numbers are registered on WhatsApp.
API endpoint
https://waclient.com/api/check_numberExample:
curl -X POST \
'https://waclient.com/api/check_number' \
-H 'Content-Type: application/json' \
--data '{
"numbers": [
"20100981XXXX",
"201234567890"
],
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"results": [
{
"number": "20100981XXXX",
"exists": true,
"jid": "[email protected]"
}
]
}
}| Parameter | Description |
|---|---|
| number | Single phone number to validate (Optional) |
| numbers | Multiple numbers: array or comma-separated string (Optional) |
| instance_id | WhatsApp Web instance ID |
| access_token | Your access token |