Content Type

Autobound's API supports multiple content formats, each optimized for different outreach scenarios.

Available Types

Email
Generate a single personalized email with subject line.

{  
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "email"  
}

Email Sequence
Generate multiple emails that build on each other, introducing fresh insights in each touch.

{  
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "sequence",
    "sequenceNumberOfEmails": 3  // defaults to 3 if not specified
}

Call Script
Generate structured call scripts with talking points and objection handling.

{  
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "callScript"  
}

LinkedIn Connection Request
Generate a personalized connection message (max 300 characters).

{  
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "connectionRequest"  
}

SMS
Generate a brief, personalized text message.

{  
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "sms"  
}

Email Opener
Generate just the opening line of an email (useful for subject lines or preview text).

{  
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "opener"  
}

Custom
Define your own content format using natural language instructions.

{
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "custom",
    "customContentType": "write a 5-bullet competitive analysis comparing the prospect's company to their top 3 competitors"
}

Default Word Counts

  • Email: ~100 words
  • Sequence: ~80 words per email
  • Call Script: ~200 words
  • Connection Request: ~40 words
  • SMS: ~25 words
  • Opener: ~15 words
  • Custom: Based on instruction

Override defaults using the wordCount parameter.