Opener
Generate attention-grabbing opening lines that reference highly relevant insights to boost email open and response rates. Perfect for subject lines or first sentences.
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": "opener"
}
response = requests.post(url, headers=headers, json=data)
print(response.text)
Here's 3 examples what was generated with the request above:
"Caught your podcast with Auren on building ZoomInfo—love the growth story."
Response Format
{
"type": "opener",
"contactEmail": "[email protected]",
"contactCompanyName": "Zoominfo",
"contactJobTitle": "CEO",
"contentList": [
{
"content": "Caught your podcast with Auren on building ZoomInfo—love the growth story",
"modelUsed": "opus",
"contentItemId": "1c499f1c-845b-4321-a817",
}
],
"insightsUsed": [
{
"insightId": "6eb70a5e-3155-4aef",
"name": "Hiring SDRs",
"type": "jobOpening",
"subType": "jobOpening",
"variables": {
"quantity": 18,
"jobPosting": [
"Sales Development Representative, Inbound - Bethesda, Maryland",
"Sales Development Representative, Inbound - Waltham, Massachusetts",
"Enterprise Sales Development Representative - Vancouver, Washington"
]
},
"score": 185
}
],
"valuePropsUsed": [
{
"valuePropId": "a07ecf19-fad0-40fb-a4c1-d9bb522d046a",
"name": "Enterprise CEO",
"persona": "ceo",
"industry": "software",
"companySize": "enterprise",
"content": "Autobound helps enterprise software companies..."
}
]
}
Optional Parameters
{
// 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 2 months ago