Other Platforms
Beyond the main channels, you can connect your agent to virtually any platform using webhooks or the REST API.Discord
Deploy your agent as a Discord bot for community servers.Setup
- Go to Discord Developer Portal
- Click New Application and name it
- Go to Bot > Add Bot
- Copy the Bot Token
- Under Privileged Gateway Intents, enable:
- Message Content Intent
- Server Members Intent
- Go to OAuth2 > URL Generator:
- Scopes:
bot - Bot Permissions:
Send Messages,Read Message History
- Scopes:
- Copy the generated URL and open it to invite the bot to your server
Configure in thinnestAI
- Open your agent > Deploy tab
- Select Discord
- Enter:
- Bot Token — From Discord Developer Portal
- Application ID — From General Information
- Click Save & Enable
Set Webhook
Configure the webhook URL in your Discord bot’s interactions settings:How It Works
- Users @mention the bot or DM it
- The bot responds in the same channel/DM
- Each user gets their own conversation session
- Leads are automatically captured with Discord user ID
Mobile Apps
React Native
Flutter
Swift (iOS)
Custom Webhooks
Build your own integration by forwarding messages to the REST API:Shopify
Add the chat widget to your Shopify store:- Go to Online Store > Themes > Edit code
- Open
theme.liquid - Before the closing
</body>tag, add:
- Save
Webflow
- Go to Project Settings > Custom Code
- In the Footer Code section, add the embed script
- Publish your site
Squarespace
- Go to Settings > Advanced > Code Injection
- In the Footer section, add the embed script
- Save
Wix
- Go to your site editor
- Click Add > Embed > Custom Embeds > Embed a Widget
- Click Enter Code and paste the embed script
- Position the widget and publish
Bubble.io
- Add an HTML element to your page
- Paste the embed script in the element’s HTML content
- Preview and deploy
Any Platform
The REST API works with any platform that can make HTTP requests. The general pattern is:- Receive a message from your platform
- Forward it to
POST /v1/agents/{agent_id}/chatwith your API key - Return the response to the user
- Email bots (via SendGrid, Mailgun webhooks)
- SMS (via Twilio, directly — not WhatsApp)
- Voice assistants (via speech-to-text + text-to-speech)
- IoT devices
- Game chat systems
- Internal tools and dashboards

