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

# Introduction

> Chat API Documentation

<div style={{textAlign: 'center', marginBottom: '3rem'}}>
  <div
    style={{
width: '100%',
padding: '2rem 3rem',
border: '3px solid #25D366',
borderRadius: '16px',
background: 'rgba(37, 211, 102, 0.05)',
boxShadow: '0 4px 20px rgba(37, 211, 102, 0.15)',
maxWidth: '800px',
margin: '0 auto'
}}
  >
    <h1 style={{fontSize: '2.5rem', fontWeight: '700', margin: '0', color: '#25D366', display: 'flex', alignItems: 'center', justifyContent: 'center', gap: '1rem'}}>
      <Icon icon="whatsapp" iconType="brands" color="#25D366" size={36} />

      Chat API

      <Icon icon="bolt" color="#25D366" size={32} />
    </h1>
  </div>
</div>

## Overview

Chat API provides a comprehensive suite of endpoints for managing customer interactions, user profiles, messaging, and integrated services. This documentation provides details on all available endpoints, request parameters, and response formats.

## Base URL

All API endpoints are accessible at the following base URL:

```
https://1-some-client.some-server.healvi-chat/third-party/v1
```

## Authentication

All API endpoints require authentication using Bearer tokens. Include the token in the Authorization header of your requests:

```http
Authorization: Bearer YOUR_ACCESS_TOKEN
```

## API Structure

The Chat API is organized into the following logical groups:

<Columns cols={2}>
  <Card title="Support" icon="headset" horizontal href="/api-reference/endpoint/Support/get-support-openapi">
    System information and configuration
  </Card>

  <Card title="Auth" icon="shield-check" horizontal href="/api-reference/endpoint/Auth/get-auth-signed-login-url">
    User authentication and login management
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Users" icon="users" horizontal href="/api-reference/endpoint/Users/get-users">
    User management and permissions
  </Card>

  <Card title="Settings" icon="gear" horizontal href="/api-reference/endpoint/Settings/get-settings-general">
    System configuration and preferences
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Agents" icon="user-tie" horizontal href="/api-reference/endpoint/Agents/get-agents">
    Agent management and capabilities
  </Card>

  <Card title="Customers" icon="user-group" horizontal href="/api-reference/endpoint/Customers/get-customers">
    Customer data and relationship management
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Profiles" icon="id-card" horizontal href="/api-reference/endpoint/Profiles/get-profiles">
    User profile management and activities
  </Card>

  <Card title="Tags" icon="tags" horizontal href="/api-reference/endpoint/Tags/get-tags">
    Content categorization and tagging
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Files" icon="folder" horizontal href="/api-reference/endpoint/Files/post-files-temporary-upload">
    File upload and management
  </Card>

  <Card title="Templates" icon="file-lines" horizontal href="/api-reference/endpoint/Templates/get-templates">
    Message template management
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Marketing" icon="bullhorn" horizontal href="/api-reference/endpoint/Marketing/get-marketing-whatsapp-qr-code">
    WhatsApp marketing tools and QR codes
  </Card>

  <Card title="Ratings" icon="star" horizontal href="/api-reference/endpoint/Ratings/get-ratings">
    Customer rating and feedback system
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Conversations" icon="comments" horizontal href="/api-reference/endpoint/Conversations/get-conversations">
    Chat conversation management and notes
  </Card>

  <Card title="Messages" icon="envelope" horizontal href="/api-reference/endpoint/Messages/get-conversations-conversationid-messages">
    Send, receive, and manage messages
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Search" icon="magnifying-glass" horizontal href="/api-reference/endpoint/Search/post-search-messages">
    Content search and discovery tools
  </Card>

  <Card title="Whatsapp" icon="phone" horizontal href="/api-reference/endpoint/Whatsapp/get-whatsapp-agent-usage">
    WhatsApp Business API integration
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Metrics" icon="chart-line" horizontal href="/api-reference/endpoint/Metrics/get-metrics-year-month">
    Analytics and performance reporting
  </Card>

  <Card title="Deletion logs" icon="trash" horizontal href="/api-reference/endpoint/Deletion logs/get-deletion-logs-export-csv">
    Data deletion tracking and logs
  </Card>
</Columns>

Each section of the documentation provides detailed information about the endpoints within these groups, including parameters, request examples, and response formats.
