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

# Vouch AI

> An AI assistant that understands your verification data, monitoring events, and compliance status.

Vouch AI is a conversational assistant built into the Vouchmark platform. It has full context on your verified companies, monitoring events, compliance obligations, and verification results — so you can ask questions in natural language instead of navigating dashboards.

## What it can do

| Capability                    | Example prompt                                    |
| ----------------------------- | ------------------------------------------------- |
| **Explain monitoring events** | "Why was my vendor's badge revoked?"              |
| **Summarise risk**            | "What's the overall risk profile of Acme Ltd?"    |
| **Compliance guidance**       | "When is my next CAC annual return due?"          |
| **Investigation support**     | "Walk me through the sanctions match on vendor X" |
| **Regulatory Q\&A**           | "What's the penalty for late FIRS filing?"        |
| **Action recommendations**    | "What should I do about the TIN deactivation?"    |

## Access methods

### Dashboard chat

Click the Vouch AI icon in the sidebar. Conversations persist and can be revisited.

### API

Three options depending on your needs:

| Method     | Endpoint                                          | Use case                    |
| ---------- | ------------------------------------------------- | --------------------------- |
| Full chat  | `POST /v1/chat/new` + `POST /v1/chat/:id/message` | Multi-turn conversations    |
| Streaming  | `POST /v1/chat/:id/stream`                        | Real-time rendering         |
| Quick chat | `POST /v1/chat/quick`                             | Single question, no session |

### AI company overview

A one-shot executive summary of a company's verification, risk, and compliance status:

```bash theme={null}
POST /v1/company/ai-overview
```

Returns a structured report covering verification completeness, active risks, compliance deadlines, and a recommended action plan.

## Context and privacy

Vouch AI only accesses data belonging to the authenticated user's account:

* Companies the user has verified or is monitoring
* Verification results and scores
* Monitoring events and alerts
* Compliance obligations

It does not access other users' data, and conversations are not used to train models.

## Pricing

Vouch AI is metered by token usage, not per message. Every interaction — full chat, streaming, quick chat, and the AI company overview — draws against the same rate.

| Action         | Cost                  |
| -------------- | --------------------- |
| Vouch AI usage | ₦100 per 1,000 tokens |

See [Pricing](/pricing) for the full breakdown.

## Where to go next

<CardGroup cols={2}>
  <Card title="API Reference" icon="robot" href="/api-reference/vouch-ai/new-chat">
    Build Vouch AI into your own interface.
  </Card>

  <Card title="Pricing" icon="coins" href="/pricing">
    Full cost breakdown for all services.
  </Card>
</CardGroup>
