> ## 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 do Celular

> Retorna informações sobre o dispositivo vinculado

## Descrição

Retorna informações sobre o dispositivo móvel vinculado à instância, como plataforma, nível de bateria e status de carregamento.

## Request

### Headers

```
Client-Token: SEU_CLIENT_TOKEN
```

## Response

### Sucesso (200)

```json theme={null}
{
  "platform": "android",
  "battery": 85,
  "charging": false
}
```

## Exemplo cURL

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