SaaS dashboards
Add a Help tab to your in-app sidebar that opens a Tickki conversation. Users get answers without leaving your product; your agents see the full session context in the inbox they already use.
Add a Help tab to your in-app sidebar that opens a Tickki conversation. Users get answers without leaving your product; your agents see the full session context in the inbox they already use.
Drop in a native chat screen with one method call. Branding follows your Tickki dashboard at runtime, so you don't ship a new build every time marketing tweaks a colour.
Surface inline help on the exact step where shoppers stall. The agent picks up the conversation in Tickki with the visitor's order context already attached.
Generate a publishable key (`pk_live_*`) in Settings โ Developer. Allow-list origins and bundle IDs per key.
GET /chat/config returns branding, welcome message, and feature flags from your Tickki dashboard. No hardcoded copy.
Create or resume a visitor session. Identify the user if you have one; otherwise an anonymous visitor is fine.
REST for messages and attachments; a private Reverb channel for realtime. Same protocols as Pusher โ clients available everywhere.
Optional but recommended. Tiny endpoints to keep the conversation feeling live, with stable error codes for every failure mode.
tickki_chat_flutter ships in two modes from one package: a drop-in widget that opens a fully branded chat screen, or a headless client if you want to build your own UI on top. Colours and copy come from your Tickki dashboard at runtime โ when marketing changes a brand colour, every integrated app updates live, no rebuild needed.
flutter pub add tickki_chat_flutter
import 'package:tickki_chat_flutter/widget.dart'; final tickki = TickkiChat( publishableKey: 'pk_live_โฆ', ); TickkiChatWidget.show( context, client: tickki, visitorId: 'user_8432', );
Drop-in widget + headless client. Runtime branding from your Tickki dashboard.
flutter pub add tickki_chat_flutterUniversal client for web, Node, and React Native projects.
Native iOS package with SwiftUI bindings.
Jetpack-Compose-friendly client for Android.
Free during beta on the Business plan and above. API access scales with your workspace plan โ no separate platform pricing.