/api/v1/number-checkCheck single number
Check if one phone number is registered on WhatsApp.
URL: https://api.actiwapi.com/api/v1/number-check
Auth: JWT Bearer
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {accessToken} | Yes |
| Content-Type | application/json | Yes* |
Request example
{
"sessionId": "uuid-of-connected-session",
"phone": "+919876543210"
}Code examples
curl -X POST "https://api.actiwapi.com/api/v1/number-check" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {accessToken}"
-d '{ "sessionId": "uuid-of-connected-session", "phone": "+919876543210"}'Response example200
{
"success": true,
"data": {
"sessionId": "uuid",
"result": {
"phone": "919876543210",
"displayPhone": "+919876543210",
"exists": true,
"jid": "919876543210@s.whatsapp.net",
"whatsappRegistered": true
}
}
}