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

# Publicar Status de Imagem

> Publica uma imagem no status do WhatsApp com legenda opcional

## Descrição

Publica uma imagem no status do WhatsApp da instância. É possível incluir uma legenda opcional. O status ficará visível por 24 horas para seus contatos.

## Request

### Headers

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

### Body

```json theme={null}
{
  "image": "https://exemplo.com/banner.jpg",
  "caption": "Promoção especial hoje!"
}
```

| Campo     | Tipo   | Obrigatório | Descrição                                       |
| --------- | ------ | ----------- | ----------------------------------------------- |
| `image`   | string | Sim         | URL pública da imagem a ser publicada no status |
| `caption` | string | Não         | Texto de legenda exibido junto à imagem         |

## Response

### Sucesso (202)

```json theme={null}
{
  "messageId": "...",
  "id": "..."
}
```

## Exemplo cURL

```bash theme={null}
curl -X POST 'https://api.bliper.io/instances/{INSTANCE_ID}/token/{INSTANCE_TOKEN}/send-image-status' \
  -H 'Client-Token: SEU_CLIENT_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"image": "https://exemplo.com/banner.jpg", "caption": "Promoção especial hoje!"}'
```
