GET
/
api
/
contacts
/
check-exists
Verificar se o número de telefone está registrado no WhatsApp
curl --request GET \
  --url https://api.wappfy.com.br/api/contacts/check-exists \
  --header 'apikey: <api-key>'
{
  "chatId": "Chat id for the phone number. Undefined if the number does not exist",
  "numberExists": true
}

Authorizations

apikey
string
header
required

Apikey

Query Parameters

phone
string
required

O número de telefone para verificar

Response

200 - application/json
numberExists
boolean
required
chatId
string
Example:

"Chat id for the phone number. Undefined if the number does not exist"