EN
ENNA

Getting Started Guide

How to Install and Use Social Analyzer

This guide covers installing Social Analyzer and using it to find and analyze social media profiles across hundreds of platforms.

Prerequisites

  • -Python 3.6+
  • -pip
Official Documentation
1

Install Social Analyzer

Install from pip.

pip

pip install social-analyzer

Verify

social-analyzer --help
2

Search for a Username

Search for a username across all supported platforms.

CLI search

social-analyzer -t username --method find

With specific platforms

social-analyzer -t username --method find --websites github twitter instagram linkedin
3

API Mode

Run Social Analyzer as a web API for integration with other tools.

Start API server

social-analyzer -t username --method find --api

Access at

# http://localhost:8001

Note: API mode is useful for integrating Social Analyzer into automated OSINT pipelines or custom investigation dashboards.

4

Output and Reporting

Save results in different formats.

JSON output

social-analyzer -t username --method find --output json > results.json

HTML report

social-analyzer -t username --method find --output html
Back to Social AnalyzerFull Documentation