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

# Send a message

> Send text messages from a connected WhatsApp token.

Before sending, the token must be paired and connected.

Use the token detail page for a dashboard test send, or call the API:

```http theme={null}
POST /api/v1/sessions/:sessionId/messages
Authorization: Bearer <api_key>
Content-Type: application/json
```

```json theme={null}
{
  "to": "15551234567",
  "content": {
    "type": "text",
    "text": "Your order is ready."
  }
}
```
