Skip to main content
The Scout Chat SDK allows you to embed Scoutline’s conversational intelligence directly into your firm’s private portals or client-facing applications.

Installation

Install the SDK using your preferred package manager.
npm install @scoutline/chat-sdk

Quick Start

Initialize the SDK with your firm’s Environment ID and a secure JWT.
import { ScoutChat } from '@scoutline/chat-sdk';

const chat = new ScoutChat({
  envId: 'env_xxx',
  token: 'YOUR_JWT'
});