Quick Start

Get Supp running on your site in three steps.

1

Create an account

Sign up at supp.support/signup. It's free to get started.

2

Generate an API key

Go to Dashboard → Settings → API Keys. Your key will be shown once. Copy it immediately.

3

Embed the widget

Add this snippet before your closing </body> tag:

html
<script
  src="https://supp.support/widget.js"
  data-key="pk_live_your_publishable_key"
  data-position="bottom-right"
  data-theme="auto"
  async
></script>

That's it. The widget handles the rest: your customers type a message, Supp classifies it into one of 315 pre-trained intents, and routes it to the action you defined. If confidence is low, it escalates to you.

You can also call the API directly without the widget:

bash
curl -X POST https://api.supp.support/api/widget \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "sk_live_your_key_here",
    "message": "I forgot my password"
  }'