Quick Start
Get Supp running on your site in three steps.
Create an account
Sign up at supp.support/signup. It's free to get started.
Generate an API key
Go to Dashboard → Settings → API Keys. Your key will be shown once. Copy it immediately.
Embed the widget
Add this snippet before your closing </body> tag:
<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:
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"
}'