Introduction
Autobound provides B2B sales intelligence—insights, signals, and AI-generated content—to power personalized outreach at scale.
Autobound's signal engine monitors 250M+ contacts and 50M+ companies for buying signals—job changes, funding, news, LinkedIn activity, hiring trends, tech stack changes—and transforms them into actionable intelligence.
Products
| What it does | Delivery | Best for | |
|---|---|---|---|
| Generate Content | AI-writes personalized emails, call scripts, sequences | REST API | Embedding AI writers in your product |
| Generate Insights | Returns ranked insights on any contact or company | REST API | On-demand enrichment and research |
| Signal Database | Full feed of 350+ signal types | GCS flat files | Powering your own intent engine |
| B2B Database | Contact and company records (270M+ contacts, 11M+ companies) | Flat files | CRM enrichment, lead scoring |
Quick Start
Get an API key (includes free credits) and start making requests.
Generate Content example
import requests
url = 'https://api.autobound.ai/api/external/generate-content/v3.6'
headers = {
'X-API-KEY': 'YOUR-API-KEY',
'Content-Type': 'application/json'
}
data = {
"contactEmail": "[email protected]",
"userEmail": "[email protected]",
"contentType": "email"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())Generate Insights example
import requests
url = 'https://api.autobound.ai/api/external/generate-insights/v1.4'
headers = {
'X-API-KEY': 'YOUR-API-KEY',
'Content-Type': 'application/json'
}
data = {
"contactEmail": "[email protected]"
}
response = requests.post(url, headers=headers, json=data)
print(response.json()) # Returns top 20 ranked insightsChoose Your Path
Other Resources
- Autobound MCP — Connect Autobound to AI agents and workflows
- Sample Data — Download example signals in CSV and JSON
- Insight Schema — Browse all 350+ insight types
Support
Email us: [email protected]
Updated 3 days ago
