Profile enrichment & social data
Social intelligence APIs for profile enrichment, social data lookup, and influence analysis.
Enrich contacts with social profile data. Get comprehensive social information from email addresses or names.
POST /api/v1/social/enrich
{ "email": "john@example.com" }
// Response
{ "name": "John Smith", "avatar": "https://...",
"profiles": { "linkedin": "...", "twitter": "..." },
"bio": "Software Engineer at..." }
Find social profiles from email or name. Search across multiple platforms to discover social presence.
POST /api/v1/social/lookup
{ "email": "jane@example.com",
"name": "Jane Doe" }
// Response
{ "found": true, "profiles": [
{ "platform": "linkedin", "url": "..." },
{ "platform": "twitter", "handle": "@jane" }] }
Calculate social influence metrics. Measure reach, engagement, and overall social impact scores.
POST /api/v1/social/influence
{ "handle": "@username",
"platform": "twitter" }
// Response
{ "score": 78, "followers": 25000,
"engagement_rate": 3.2,
"reach": "medium", "trending": true }
Get company social media presence. Discover all official social accounts and activity metrics.
POST /api/v1/social/company
{ "domain": "example.com" }
// Response
{ "company": "Example Inc",
"social": { "linkedin": "...", "twitter": "...",
"facebook": "...", "instagram": "..." },
"total_followers": 150000 }
Analyze hashtag trends and usage. Track popularity, related tags, and historical performance.
POST /api/v1/social/hashtag
{ "hashtag": "webdev",
"platform": "twitter" }
// Response
{ "posts_count": 1250000, "trending": true,
"growth": "+15%",
"related": ["coding", "javascript", "tech"],
"peak_hours": [9, 14, 20] }
Get your API key and start enriching profiles in minutes.