Supported Platforms

Connect all your customer channels, e-commerce stores, and CRM systems into a unified AI-powered hub.

Featured Integrations & Solutions

Discover the most popular modules and direct guide links to power up your platform.

NEW CHANNEL

TikTok Business DM

Connect your TikTok account, manage direct messages (DMs) and 90-day history in Supsis.

4 min read Easy
AUTOMATION

TikTok Automatic Messages

Configure welcome messages, suggested questions, and chat tips directly from Supsis.

5 min read Easy
POPULAR

WhatsApp Business API

Meta Business verification, official number definition, and messaging limits.

4 min read Easy
META GUIDE

Meta Business Verification

Meta Business Manager company verification steps, document upload, and green tick.

5 min read Medium
ARTIFICIAL INTELLIGENCE

AI Voice Agent

24/7 automated phone calls, appointment scheduling, and natural speech dialogs.

7 min read Medium
AUTOMATION

Chatbot Configuration

Drag-and-drop bot scenarios, dynamic response blocks, and 24/7 customer greetings.

6 min read Easy
WORKFLOW

Automations & Workflows

Build advanced automated flows with event triggers, condition filters, and webhooks.

5 min read Easy
MARKETING

Bulk Messaging & Broadcast

Broadcast templated messages across WhatsApp and SMS with schedule controls.

4 min read Easy
LIVE SUPPORT

Chat Menu & Inbox

Aggregate all your inbound channels into a single inbox and route chats seamlessly.

3 min read Easy
BILLING

Plans & Billing

Upgrade plans, add additional channels or agent seats, and manage payment methods.

3 min read Quick
DEVELOPER

MCP Server Integration

Connect Cursor IDE, Claude Desktop, and LLM agents directly to the live Supsis database.

5 min read Advanced
DEVELOPER

JavaScript SDK Functions

Custom live chat widget interactions, cart events, and user authentication on your website.

5 min read Medium

Top 4 Code Snippets for Developers

Copy ready-to-use code snippets with a single click to integrate into your system.

1. JS SDK Web Widget Embed
<script src="https://static.supsis.live/widget.js" 
  data-supsis-id="YOUR_DOMAIN_ID" 
  async></script>
2. MCP Server (Claude / Cursor Config)
{
  "mcpServers": {
    "supsis": {
      "command": "npx",
      "args": ["-y", "@supsis/mcp-server"],
      "env": { "SUPSIS_API_KEY": "YOUR_API_KEY" }
    }
  }
}
3. Webhooks (Incoming Message Listener)
{
  "event": "message.received",
  "chatId": "chat_987654",
  "sender": { "phone": "+15550000000", "name": "John Doe" },
  "message": { "text": "What is the product price?" }
}
4. REST API (Send Message cURL)
curl -X POST "https://api.supsis.ai/v1/messages/send" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"to": "+15550000000", "text": "Your order has been confirmed."}'