Skip to main contentSkip to main content

Documentation

Everything you need to master Social Engager

Quick Start Guide

Get up and running with Social Engager in under 5 minutes.

1Install the Extension

Add Social Engager to your browser from the Chrome Web Store or Firefox Add-ons.

2Create Your Account

Sign up with your email or continue with Google. No credit card required for the free plan.

1. Click the extension icon in your toolbar
2. Click "Sign Up Free"
3. Enter your email and create a password
4. Verify your email (check spam folder)

3Generate Your First Reply

Navigate to any social media post and click the Social Engager icon.

Extension automatically detects the platform and post content
Choose your tone: Safe, Creative, or Bold
Review 3 AI-generated reply options
Click "Insert" to add to comment box

Code Example: API Integration

const response = await fetch('https://api.socialengager.com/v1/generate', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    platform: 'twitter',
    content: 'Original post content...',
    tone: 'creative',
    persona: 'professional'
  })
});

const { replies } = await response.json();
console.log(replies); // Array of 3 generated replies

Need Help?

Can't find what you're looking for? Our support team is here to help.