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 Content | Generate Insights | Signal Database | |
|---|---|---|---|
| What it does | Writes personalized emails, call scripts, sequences | Returns ranked insights on any contact or company | Delivers your full signal feed via flat files |
| Delivery | REST API | REST API | S3 / Parquet / JSON |
| Best for | Real-time AI writers | On-demand enrichment | Powering your own intent engine |
| Get started | View docs | View docs | View 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 insightsSignal 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]
Updated about 14 hours ago
