Overview
Insider is a customer experience platform engineered to facilitate real-time personalization and engagement across various digital touchpoints. The platform integrates AI-powered recommendations, predictive segmentation, and marketing automation capabilities to create and manage customer journeys. Core use cases include optimizing web and mobile experiences, delivering targeted push notifications, and orchestrating email and in-app messaging campaigns.
From a technical perspective, Insider provides SDKs for common environments such as JavaScript, iOS, Android, React Native, and Flutter. These SDKs enable developers to integrate the platform's features directly into their applications, collecting user data and triggering personalized experiences. The platform's API reference allows for programmatic access to customer data, campaign management, and content delivery, supporting custom integrations with existing backend systems and data warehouses. Insider emphasizes its ability to unify customer data from disparate sources, creating a single customer view that powers its AI models for predictive analytics and personalization.
The platform is designed for mid-to-large enterprises seeking to enhance their customer engagement strategies, particularly those with complex omnichannel needs. It is often employed by e-commerce businesses, media companies, and financial institutions looking to improve conversion rates, customer retention, and overall customer lifetime value through data-driven personalization. For instance, an e-commerce platform might use Insider to recommend products based on real-time browsing behavior and past purchases, or a media company could personalize content feeds for individual users across their website and mobile app. The underlying architecture is built to handle high volumes of real-time data ingestion and processing, which is critical for delivering immediate, contextually relevant customer experiences.
Insider's focus on AI-powered features, such as smart recommendations and predictive segments, aims to reduce manual effort in campaign management while increasing the relevance of customer interactions. For example, its AI can predict which customers are likely to churn or which products a customer is most likely to purchase next, allowing marketers to proactively engage with targeted offers or content. This capability helps organizations move beyond rule-based personalization to more dynamic, machine-learning-driven approaches, aligning with trends in customer data platforms (CDPs) as described by industry analysis on customer data management platforms. For example, similar platforms like Salesforce Marketing Cloud Personalization also emphasize the importance of a unified customer profile to drive hyper-personalization across channels, illustrating a common architectural approach in the customer experience domain.
Key features
- AI-powered Personalization: Delivers individualized content, product recommendations, and offers across web, mobile, and email channels using machine learning algorithms.
- Customer Journey Orchestration: Designs, automates, and optimizes multi-step customer journeys involving various touchpoints, triggered by real-time user behavior.
- Web Push Notifications: Enables targeted, browser-based notifications to re-engage users and drive conversions on desktop and mobile web.
- Mobile App Personalization: Customizes in-app experiences, push notifications, and in-app messaging based on user behavior within native applications using SDKs for iOS, Android, and other frameworks.
- Email Marketing: Integrates email campaign management with personalization and segmentation capabilities, allowing for dynamic content and automated email flows.
- WhatsApp Business API: Facilitates personalized communication and campaigns through the WhatsApp platform, including transactional messages and marketing outreach.
- In-app Messaging: Provides tools to deliver context-specific messages, surveys, and promotions directly within mobile applications to enhance user engagement.
Pricing
Insider employs a custom enterprise pricing model, which is determined based on the specific needs, scale, and feature requirements of each client. Information on specific tiers or starting prices is not publicly disclosed. Potential customers are directed to contact Insider's sales team for a personalized quote.
| Tier Name | Key Features | Pricing Model |
|---|---|---|
| Custom Enterprise Solution | AI-powered personalization, omnichannel journey orchestration, web push, mobile personalization, email, WhatsApp Business API, in-app messaging, advanced analytics | Custom quote upon sales contact |
For detailed pricing information and to discuss specific requirements, interested parties can visit the Insider pricing page and engage with their sales team.
Common integrations
Insider provides various SDKs and an API for integration into existing technology stacks. These tools allow developers to connect Insider with a range of other platforms and services, enabling a unified customer experience.
- JavaScript SDK: For integrating web personalization and data collection on websites. The Insider JavaScript SDK documentation provides specific steps for implementation.
- iOS SDK: For enabling mobile app personalization and engagement features on Apple devices. Refer to the Insider iOS SDK installation guide.
- Android SDK: For integrating personalization and messaging capabilities into Android applications. Detailed instructions are available in the Insider Android SDK documentation.
- React Native SDK: Supports cross-platform mobile application development for both iOS and Android. The Insider React Native SDK setup guide offers integration details.
- Flutter SDK: Provides integration for applications built with Google's Flutter framework. Consult the Insider Flutter SDK documentation for setup instructions.
- Rest API: For custom integrations with backend systems, CRM, CDP, and other marketing tools, allowing programmatic access to Insider's functionalities. The Insider API reference outlines available endpoints and data models.
Alternatives
- Braze: A customer engagement platform focusing on mobile-first messaging and a robust customer data platform.
- Iterable: A growth marketing platform that combines a flexible data platform with communication channel orchestration to power personalized user engagement.
- Salesforce Marketing Cloud Personalization: Part of the broader Salesforce ecosystem, offering real-time personalization driven by unified customer profiles and AI.
Getting started
To begin integrating Insider, the initial step typically involves adding the JavaScript SDK to your website. This enables basic data collection and personalization features.
// Example: Basic Insider JavaScript SDK integration
// This script should be placed in the <head> of your HTML document.
// Replace 'YOUR_PARTNER_NAME' with your actual Insider partner name.
(function(i, ns, d, o) {
var c = d.createElement(ns);
c.async = !0;
c.src = i;
d.getElementsByTagName(ns)[0].parentNode.appendChild(c);
})(('https:' == d.location.protocol ? 'https://cdn' : 'http://cdn') + '.useinsider.com/YOUR_PARTNER_NAME/insider.js', 'script', d, 'insider');
// Example of tracking a page view
// This would typically be called after the SDK has loaded and initialized.
// insider.track("PageView", {
// url: window.location.href,
// title: document.title
// });
// Example of identifying a user after login
// This sends user attributes to Insider for segmentation and personalization.
// insider.identify({
// id: "user_12345",
// email: "[email protected]",
// name: "John Doe",
// gender: "male",
// custom_attribute: "premium_customer"
// });
console.log("Insider SDK initialization script loaded.");
This script initializes the Insider SDK and allows for tracking user interactions and identifying users. For mobile applications, corresponding SDKs for iOS, Android, React Native, or Flutter would be integrated based on the application's development environment. Full documentation for each SDK and the API is available on the Insider Academy documentation portal.