Ai Support On Your Website

Intelligent customer support automation that scales with your business

Get Started Now

How It Works

1. Client Interaction

Customer starts a conversation through the embedded chat widget on your website and gets instant and personalized support

2. AI Support Agent

Our AI instantly analyzes customer queries and provides accurate responses using your comprehensive documentation and knowledge base

3. Smart Escalation

When the AI encounters complex issues or needs additional information, it seamlessly escalates to human experts via WhatsApp for immediate assistance

Powerful Features

Issue Creation & Tracking

Automatically create and track customer issues with detailed logs and status updates

Documentation Updates

AI automatically grows your documentation by learning from interactions with product owner (WhatsApp)

Smart Alerts

Get notified about important client demands and trending support topics in real-time

Sales Conversion

AI chatbot actively converts visitors into clients by intelligently selling your products when they ask questions

Intelligent Response Caching

Frequently asked questions are automatically cached for lightning-fast responses and reduced costs, while maintaining accuracy and freshness

Custom Tool Support

AI can performs custom actions on your application on behalf of the user, like a real customer service agent

Simple, Transparent Pricing

Complete AI Support

$5/month

Base subscription enables all core features

Service Price
AI thinking (input) $0.00125/1K tokens
AI thinking (output) $0.01/1K tokens
Cached responses $0.006/message
Start Trial

Get your $12 free credit now!

(Promotional credit for new verified accounts; limited quantity available. Non‑withdrawable. Terms apply.)

Easy Integration

Get up and running in minutes with our simple integration

1

Embed the Chat Widget

Add our chat widget to your website for guest users

Step 1: Embed the chat widget

<script src="https://cdn.directsupport.ai/embed.js"
        data-api-token="your_api_key">           
</script>

Control Widget Functions (optional)

// Hide the widget
window['AISupportWidget'].hide();

// Show the widget
window['AISupportWidget'].show();
Get Your API Keys
1

Embed the Chat Widget

Add our chat widget to your website with user identification

2

Setup Webhook

Create a webhook endpoint to validate user tokens

Step 1: Embed the chat widget

<script src="https://cdn.directsupport.ai/embed.js"
        data-api-token="your_api_key">           
</script>

Control Widget Functions

// Pass a secure token to identify the current user
window['AISupportWidget'].setUserToken(token)

// Show the widget
window['AISupportWidget'].show();

// Hide the widget
window['AISupportWidget'].hide();

Step 2: Webhook endpoint (on your server)

GET /your_webhook/validate-token?userToken=USER_TOKEN&sharedSecret=YOUR_SHARED_SECRET

Response:
{
  "valid": true,
  "userInfo": {
    "name": "John Doe",
    "email": "john@example.com",
    "isGuest": false,
    "uniqueId": "USER_UNIQUE_ID",
    "priority": "lowest" // 'regular', 'high'
  },
  "tokenExpiresMin": 30 // Token cache duration (optional)
}
Get Your API Keys