> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bliper.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Verificar Múltiplos Telefones

> Verifica se vários números de telefone possuem WhatsApp em uma única requisição

## Descrição

Verifica se vários números de telefone estão registrados no WhatsApp em uma única requisição.

## Request

### Headers

```
Client-Token: SEU_CLIENT_TOKEN
Content-Type: application/json
```

### Body

```json theme={null}
{
  "phones": ["5511999999999", "5511888888888", "5511777777777"]
}
```

| Campo    | Tipo  | Obrigatório | Descrição                                  |
| -------- | ----- | ----------- | ------------------------------------------ |
| `phones` | array | Sim         | Lista de números no formato DDI+DDD+número |

## Response

### Sucesso (200)

```json theme={null}
{
  "results": [
    {"phone": "5511999999999", "exists": true},
    {"phone": "5511888888888", "exists": false}
  ]
}
```

## Exemplo cURL

```bash theme={null}
curl -X POST 'https://api.bliper.io/instances/{INSTANCE_ID}/token/{INSTANCE_TOKEN}/phone-exists-batch' \
  -H 'Client-Token: SEU_CLIENT_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"phones": ["5511999999999", "5511888888888", "5511777777777"]}'
```

<Note>Use este endpoint para verificar múltiplos números de uma vez em vez de fazer várias chamadas individuais.</Note>
