Twitter Posts
A person's posts on Twitter.
This insight captures what a prospect is saying publicly on Twitter/X, helping you uncover personal beliefs, strategic focus areas, or signs of engagement that can be used to inform your outreach.
Why does this insight matter?
- Reveals the prospect’s voice and tone in their own words
- Surfaces active pain points, strategic initiatives, or industry views
- Allows reps to reference specific tweets as contextual hooks
- Provides an opportunity to align your value prop to their interests
- Can spark rapport with hard-to-reach personas
Insight Subtypes and Usage
- Subtype:
socialMediaProspectRecentTwitterPosts
API Controls
Generate Insights API
To generate this insight, you only need to provide the prospect’s email or LinkedIn profile URL. Autobound handles resolution of the correct Twitter handle automatically.
{
"insightSubtype": "socialMediaProspectRecentTwitterPosts",
"contactEmail": "[email protected]"
}
Only one of contactEmail or contactLinkedinUrl is required. If both are provided, resolution is more accurate.
Autobound uses proprietary resolution logic—including cached metadata, pattern matching, and third-party signals—to match the correct Twitter handle to the right prospect.
Generate Content API
To mandate this insight for content generation, include it in the list of enabled insights:
{
"enabledInsights": ["socialMediaProspectRecentTwitterPosts"]
}
Or to mandate Twitter Posts to be excluded from your output, turn off the insight from Insight Control, or add the following to your generate-content request:
{
"disabledInsights": ["socialMediaProspectRecentTwitterPosts"]
}
What the Output Includes
The returned insight object contains two major sections:
-
Profile Metadata
Includes fields like:name
handle
(username)bio
location
followers
,following
verified
-
Tweets Array
Each tweet includes:text
created_at
views
,likes
,retweets
,replies
,quote_count
is_reply
,is_retweet
,is_quote
- Optional
media
array
-
Engagement Summary
Includes totals across all tweets:total_tweets
total_views
total_likes
total_retweets
total_replies
Example Output Snippet
{
"profile": {
"name": "Ethan Evans",
"handle": "EthanEvansVP",
"bio": "Former Amazon VP...",
"location": "Traveling the world",
"followers": 30217,
"verified": true
},
"tweets": [
{
"id": "1932193799314563265",
"text": "This diagram explains how to build trust quickly and well...",
"created_at": "2025-06-09T21:51:14Z",
"likes": 155,
"retweets": 10,
"replies": 1,
"media": []
}
],
"summary": {
"total_tweets": 13,
"total_views": 82439,
"total_likes": 862,
"total_retweets": 66,
"total_replies": 36
}
}
Example Usage in Outreach
"Saw your tweet on building trust for executive promotion—loved the framework. That’s actually something we help leadership teams formalize and scale..."
Updated about 7 hours ago