> ## 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.

# Dados da Instância

> Retorna informações do perfil WhatsApp conectado à instância

## Descrição

Retorna as informações do perfil do WhatsApp atualmente conectado à instância, como número de telefone, nome e foto de perfil.

## Request

### Headers

```
Client-Token: SEU_CLIENT_TOKEN
```

## Response

### Sucesso (200)

```json theme={null}
{
  "phone": "5511999999999",
  "name": "Meu Nome",
  "profilePicture": "https://..."
}
```

## Exemplo cURL

```bash theme={null}
curl -X GET 'https://api.bliper.io/instances/{INSTANCE_ID}/token/{INSTANCE_TOKEN}/me' \
  -H 'Client-Token: SEU_CLIENT_TOKEN'
```
