Documentation Preview

Get a preview of our comprehensive documentation that will be available at launch

Coming with product launch
Quick Start
Get up and running in 5 minutes
  • Create your account and workspace
  • Set up your first monitoring project
  • Configure notification channels
  • Deploy your first alert
Configuration
Detailed setup and configuration guides
  • Platform integrations setup
  • Keyword and intent configuration
  • Alert rules and filtering
  • Team and permission management
API Reference
Complete API documentation with examples
  • Authentication and API keys
  • REST API endpoints
  • Webhook configuration
  • Rate limits and best practices
Integrations
Connect with your favorite tools
  • Slack notifications setup
  • Email delivery configuration
  • CRM integrations
  • Custom webhook examples
Analytics
Understanding your data and metrics
  • Dashboard overview
  • Intent classification reports
  • Performance metrics
  • Custom reporting
Use Cases
Real-world examples and best practices
  • Lead generation workflows
  • Customer support automation
  • Competitor monitoring
  • Brand reputation management

Code Examples

Setting Up Your First Monitor

Create a monitor to track competitor switching intent

// Create a new monitor
const monitor = await sensefluence.monitors.create({
  name: "Competitor Switching Intent",
  platforms: ["reddit", "twitter"],
  keywords: [
    "looking for alternatives to {competitor}",
    "switching from {competitor}",
    "{competitor} vs alternatives"
  ],
  intent_types: ["switching", "research"],
  notifications: {
    slack: {
      channel: "#sales-alerts",
      mention: "@sales-team"
    }
  }
});

Webhook Integration

Receive real-time alerts via webhook

// Webhook payload example
{
  "event": "intent_detected",
  "monitor_id": "mon_123456",
  "conversation": {
    "id": "conv_789012",
    "platform": "reddit",
    "url": "https://reddit.com/r/saas/comments/abc123",
    "text": "Looking for alternatives to Competitor X...",
    "author": "user123",
    "created_at": "2024-01-15T10:30:00Z"
  },
  "intent": {
    "type": "switching",
    "confidence": 0.94,
    "entities": ["Competitor X"],
    "sentiment": "negative"
  }
}

SDK Support

JavaScript

Available

Python

Available

Go

Available

PHP

Planned

Support Resources

Live Chat Support

Get help from our team during business hours

Knowledge Base

Comprehensive guides and tutorials

Developer Portal

API docs, SDKs, and code examples