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

# Introduction

> The agentic customer experience platform.

The Verbose API lets you do everything the dashboard does, programmatically:
manage contacts, create and run SMS and voice campaigns, build AI agents, and
send one-off messages and calls.

## Base URL

```text theme={null}
https://astrasend-mocha.vercel.app
```

All endpoints live under `/api/public`.

## Conventions

* **REST + JSON.** Send and receive `application/json`.
* **Uniform envelope.** Every response is `{ "ok": true, ... }` on success or
  `{ "ok": false, "error": "..." }` with a `4xx`/`5xx` status on failure.
* **Tenant-scoped.** A key only ever sees its own workspace's data.
* **IDs are UUIDs.** Pass the ids returned by list endpoints.

## Get started

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    Create an API key and authenticate your requests.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Import a contact and launch your first campaign in a few calls.
  </Card>
</CardGroup>

## What you can build

Every part of the platform is available through the API. Here's the map.

### Audience

<CardGroup cols={3}>
  <Card title="Contacts" icon="users">
    Create, update, and organize the people you reach.
  </Card>

  <Card title="Lists & segments" icon="filter">
    Static lists and live, rule-based segments.
  </Card>

  <Card title="Suppression" icon="ban">
    Keep specific numbers off your sends.
  </Card>
</CardGroup>

### Engage

<CardGroup cols={2}>
  <Card title="Campaigns" icon="bullhorn">
    SMS & voice campaigns to a list, with timed follow-ups.
  </Card>

  <Card title="Messages & calls" icon="paper-plane">
    Send a single SMS or place an outbound voice-agent call.
  </Card>

  <Card title="Inbox" icon="inbox">
    Read conversations and reply in-thread.
  </Card>

  <Card title="Agents" icon="robot">
    AI SMS & voice agents that hold the conversation for you.
  </Card>
</CardGroup>

### Automate

<CardGroup cols={2}>
  <Card title="Flows" icon="diagram-project">
    Multi-step journeys — send, wait, branch, call, tag, integrate.
  </Card>

  <Card title="Offers" icon="tag">
    Track destinations and attribute conversions back to sends.
  </Card>
</CardGroup>

### Deploy

<CardGroup cols={2}>
  <Card title="Phone numbers" icon="phone">
    Search, order, release, and pool your sending numbers.
  </Card>

  <Card title="Registration" icon="shield-check">
    10DLC brands & campaigns, plus short-code requests.
  </Card>
</CardGroup>

### Measure & connect

<CardGroup cols={2}>
  <Card title="Analytics" icon="chart-line">
    Delivery, engagement, conversions, and custom reports.
  </Card>

  <Card title="Webhooks" icon="bolt">
    Subscribe to events — replies, clicks, opt-outs, call outcomes.
  </Card>
</CardGroup>

<Note>
  Creating or starting a campaign, sending a message, and placing a call dispatch
  real traffic and may incur cost. Test against a small list first.
</Note>
