Username correlation and social footprint analysis across multiple platforms.
The Social Footprint module enables username correlation across multiple platforms to build a comprehensive profile of an online identity.
Submit a username to /api/osint/social to search for matching profiles across supported platforms.
Each result includes a confidence score indicating the likelihood that the discovered profile belongs to the target identity.
The social OSINT stores results as structured JSON:
{
"count": 5,
"matches": [
{
"platform": "github",
"url": "https://github.com/username",
"confidence": 0.95
},
{
"platform": "twitter",
"url": "https://twitter.com/username",
"confidence": 0.85
}
]
}POST /api/osint/social
Content-Type: application/json
{
"username": "target_username"
}
Each social footprint search consumes 1 investigation credit. Results are stored in search_history for future reference.
The social footprint module correlates usernames across various platforms including:
Results are returned with platform-specific confidence scoring based on profile availability and matching criteria.