Autobound API Overview

Autobound's API enables developers to instantly generate hyper-personalized sales content by leveraging our database of 250M+ contacts and 50M+ companies, using advanced AI to surface the most relevant insights and transform them into engaging messages that drive responses.

Autobound's Signal Engine continuously monitors 250M+ contacts and 50M+ companies for buying signals—job changes, funding, news, LinkedIn activity, hiring trends, tech stack changes—and uses AI to transform them into actionable intelligence.

Built for embedding, Autobound powers personalization inside sales platforms, CRMs, and workflow tools.

Three Ways to Integrate

Generate ContentGenerate InsightsSignal Database
What it doesWrites personalized emails, call scripts, sequencesReturns ranked insights on any contact or companyDelivers your full signal feed via flat files
DeliveryREST APIREST APIS3 / Parquet / JSON
Best forReal-time AI writersOn-demand enrichmentPowering your own intent engine
Get startedView docsView docsView docs

Quick Start (API)

Get started by generating a secure API key (comes with free credits).

Generate Content

import requests

url = 'https://api.autobound.ai/api/external/generate-content/v3.6'  
headers = {  
    'X-API-KEY': 'YOUR-API-KEY-HERE',  
    'Content-Type': 'application/json'  
}  
data = {  
    "contactEmail": "[email protected]",  
    "userEmail": "[email protected]",  
    "contentType": "email"
}

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

Generate Insights

import requests

url = 'https://api.autobound.ai/api/external/generate-insights/v1.4'  
headers = {  
    'X-API-KEY': 'YOUR-API-KEY-HERE',  
    'Content-Type': 'application/json'  
}  
data = {  
    "contactEmail": "[email protected]"
}

response = requests.post(url, headers=headers, json=data)  
print(response.text)  # Returns top 20 ranked insights

Signal Database (Enterprise)

For bulk signal delivery, we offer the full Signal Database as flat files (JSON/Parquet) pushed to your S3 bucket or pulled from ours. Ideal for:

  • Powering your own intent engine
  • Enriching your entire CRM or data warehouse
  • Building automated workflows triggered by signals

Learn more about Signal Database →

Need Support?

Email us: [email protected]