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

# Wachat Documentation

> The complete guide to integrating WhatsApp messaging into your application.

Welcome to the official Wachat developer documentation. Whether you are building an automated customer support bot, sending notifications, or managing group chats, our API provides the tools you need to build powerful communication flows.

## 🔐 Authentication

All API requests to Wachat must be authenticated using a secret token. This token identifies your team and ensures your requests are linked to your specific subscription plan and instances.

### API Token

To interact with our endpoints, you must include your API Token in the HTTP header of every request.

<Warning>
  Keep your token secret! Your API Token carries full access to your WhatsApp instances and messaging quota. Never share it in public repositories (like GitHub) or client-side code that can be inspected by users.
</Warning>

## Getting Started

Explore our guides and API reference to start sending messages in minutes.

<Tip>
  💡 Pro Tip: Testing from these Docs

  You can use the "Try It" feature on the right side of any API endpoint in this documentation! Simply paste your token into the authentication field once, and it will be remembered as you navigate through different endpoints.
</Tip>

<CardGroup cols={2}>
  <Card title="Quick Start Guide" icon="play" href="/api-reference/introduction">
    Learn how to authenticate and make your very first API request.
  </Card>

  <Card title="Send Text Message" icon="message" href="/api-reference/send-text">
    Send simple WhatsApp text messages with optional typing delay simulation.
  </Card>

  <Card title="Send Media Message" icon="paperclip" href="/api-reference/send-media">
    Send images, videos, documents, and audio messages with captions.
  </Card>

  <Card title="Send Buttons" icon="check-square" href="/api-reference/send-button">
    Create interactive quick reply button experiences.
  </Card>

  <Card title="Send CTA Buttons" icon="link" href="/api-reference/send-cta">
    Send actionable URL and call buttons directly inside WhatsApp.
  </Card>

  <Card title="Send Carousel" icon="images" href="/api-reference/send-carousel">
    Deliver multi-card carousel interactions with embedded actions.
  </Card>

  <Card title="Send List Menu" icon="list" href="/api-reference/send-list">
    Build expandable WhatsApp list menu experiences.
  </Card>

  <Card title="Manage Instances" icon="qrcode" href="/api-reference/instance-state">
    Connect devices, check connection status, and generate QR codes.
  </Card>
</CardGroup>

## Advanced Features

<CardGroup cols={2}>
  <Card title="Group Management" icon="users-gear" href="/api-reference/groups">
    Fetch group lists and send messages directly to WhatsApp groups.
  </Card>

  <Card title="Webhooks" icon="brackets-curly" href="/api-reference/introduction#webhooks">
    Receive real-time updates on your server for incoming messages.
  </Card>
</CardGroup>
