Generate any type of personalized content by defining your own output format.

Perfect for real-time pain point analysis, product positioning, and website personalization.

Example 1: Website Visitor Greeting

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": "custom",
    "customContentType": "write a personalized website greeting to this prospect who has just landed on my site",
    "model": "gpt4o"  # optimized for speed
}

response = requests.post(url, headers=headers, json=data)
print(response.text)

Here's what was generated with the request above:

Welcome to our site! Saw you're with Zoominfo, we have similar customers (TechTarget), glad to discuss how we've helped them introduce personalization at scale if it's of interest.

Here if you have questions!

Example 2: Account Attack Plan

import requests

url = 'https://api.autobound.ai/api/external/generate-content/v3.5'
headers = {
    'X-API-KEY': 'YOUR-API-KEY-HERE',
    'Content-Type': 'application/json'
}
data = {
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "custom",
    "customContentType": "write a personalized website greeting to this prospect who has just landed on my site",
    "model": "gpt4o"  # optimized for speed
}

response = requests.post(url, headers=headers, json=data)
print(response.text)

Here's what was generated with the request above:

ZoomInfo Account Plan

Company Overview:

  • B2B data platform with 35,000+ customers
  • Recent challenges: -5% revenue growth, increasing competition from HubSpot
  • Key initiative: Investing in sales productivity (from recent 10-K)

Competitive Landscape:

  • HubSpot expanding data offerings post-Clearbit acquisition
  • HubSpot CEO mentioned in Q3 earnings: "Contact data will be core to our 2024 strategy"
  • Market becoming increasingly crowded with data solutions

Buying Committee:

  • Henry Schuck (CEO) - Recently discussed sales efficiency on Auren Hoffman podcast
  • James Roth (CRO) - Leading sales transformation initiatives
  • Currently hiring 18 SDRs across 3 locations

Connection Points:

  • 3 Autobound employees previously worked with ZoomInfo leadership at Oracle, Clearbit, and LinkedIn
  • You went to the same school
  • 5 of Henry's coworkers have used Autobound at previous companies

Recommended Solution:

Autobound's AI Email Writer could help ZoomInfo:

  • Accelerate SDR ramp time
  • Generate pipeline 60-120x faster
  • Improve email personalization at scale
  • Drive revenue growth through increased sales efficiency

Next Steps:

  • Schedule demo with Henry and James
  • Focus on revenue impact and competitive advantage
  • Highlight shared connections and customer success stories

Example 3: Product Positioning

import requests

url = 'https://api.autobound.ai/api/external/generate-content/v3.5'
headers = {
    'X-API-KEY': 'YOUR-API-KEY-HERE',
    'Content-Type': 'application/json'
}
data = {
    "contactEmail": "[email protected]",
    "userEmail": "[email protected]",
    "contentType": "custom",
    "customContentType": "Help me draft 5 use cases for our product suite given all potential pain points this prospect might have. Be specific to each product we sell.",
    "model": "opus"
}

response = requests.post(url, headers=headers, json=data)
print(response.text)

Here's what was generated with the request above:

  1. AI Email Writer

Pain Point: 18 new SDRs need to ramp quickly while maintaining quality

Solution: One-click personalized emails using 350+ insight types

Impact: 3x faster ramp time, 2-3x higher response rates

Key Differentiator: Combines ZoomInfo's data with Autobound's personalization

  1. Take A Look (Website Personalization)

Pain Point: HubSpot entering data space, need competitive differentiation
Solution: Greet website visitors with personalized messaging
Impact: Create "always-on" SDR experience
Key Differentiator: Turn intent data into immediate engagement

  1. API Integration

Pain Point: Building in-house AI writer estimated at $400k, 8-12 months
Solution: Integrate Autobound's API in weeks (like TechTarget did)
Impact: 30% increase in user retention
Key Differentiator: 350+ insight types ready to use

  1. Sales Intelligence Platform

Pain Point: -5% revenue decline, missed earnings by 128%
Solution: Surface actionable insights for entire sales org
Impact: 60-120x faster prospecting
Key Differentiator: SEC filings, earnings calls, competitive intel

  1. AI Sequencing

Pain Point: Need consistent quality across multi-touch campaigns
Solution: Auto-generate personalized follow-ups
Impact: Maintain personalization across every touch
Key Differentiator: Each email introduces fresh, relevant insights

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"
}