LinkedIn Connection Request
Generate personalized LinkedIn connection requests that stay within the 300-character limit while incorporating relevant insights to maximize acceptance rates.
Basic Request
import requests
url = 'https://api.autobound.ai/api/external/generate-content/[UPDATE-VERSION]'
headers = {
'X-API-KEY': 'YOUR-API-KEY-HERE',
'Content-Type': 'application/json'
}
data = {
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"contentType": "connectionRequest"
}
response = requests.post(url, headers=headers, json=data)
print(response.text)
Here's what was generated with the request above
Hi Henry - loved your podcast with Auren about building ZoomInfo. As another founder in the sales tech space (we help SDRs personalize outreach 60-120x faster), would love to connect and share insights about scaling sales teams.
Response Format
{
"type": "connectionRequest",
"contactEmail": "[email protected]",
"contactCompanyName": "Zoominfo",
"contactJobTitle": "CEO",
"contentList": [
{
"content": "Hi Henry - loved your podcast with Auren...",
"modelUsed": "opus",
"contentItemId": "1c499f1c-845b-4321-a817",
"characterCount": 179
}
],
"insightsUsed": [
{
"insightId": "987fea93-b711-49d0",
"name": "Appeared in podcast",
"type": "socialMedia",
"subType": "podcast",
"variables": {
"title": "Henry Schuck (CEO of ZoomInfo): Building A Billion Dollar Data Company",
"snippet": "Henry Schuck, CEO of ZoomInfo (NASDAQ: ZI), talks with World of DaaS host Auren Hoffman...",
"website": "https://podcasts.apple.com/us/podcast/henry-schuck-building-zoominfo/id1154105909"
},
"score": 195
}
],
"valuePropsUsed": [
{
"valuePropId": "a07ecf19-fad0-40fb-a4c1-d9bb522d046a",
"name": "Enterprise CEO",
"persona": "ceo",
"industry": "software",
"companySize": "enterprise",
"content": "Autobound helps enterprise software companies..."
}
]
}
Optional Parameters
{
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"contentType": "connectionRequest",
// Customize Output
"writingStyle": "cxo_pitch",
"wordCount": "30",
"language": "english",
// Additional Context
"additionalContext": "Met at SaaStr 2023",
// Control Insights
"enabledInsights": ["podcast", "shared_connections"],
"disabledInsights": ["financial"],
// Model Selection
"model": "opus" // or "gpt4", "sonnet", "fine_tuned"
}
Updated about 1 month ago