🤖 Automation Loop
Auto-scan companies → Detect hot leads → Send emails
How It Works
- 1.Add companies to queue (via API)
- 2.Run automation → scans each company
- 3.If score under 30 → HOT LEAD → auto-sends email
- 4.Tracks everything in dashboard
API Endpoints
POST /api/automate
{ action: 'add', name: 'Company', domain: 'company.com' }
POST /api/automate
{ action: 'run' } → Run the full loop
POST /api/automate
{ action: 'status' } → Get queue stats
Add Companies
Add companies to the scanning queue.
curl -X POST https://sottovox.com/api/automate \
-H "Content-Type: application/json" \
-d '{"action":"add","name":"Linear","domain":"linear.app"}'
Run Automation
Start scanning and emailing (15 emails/day max).
curl -X POST https://sottovox.com/api/automate \
-H "Content-Type: application/json" \
-d '{"action":"run"}'
Ready to Test?
Add these companies and run the loop:
curl -X POST https://sottovox.com/api/automate -H "Content-Type: application/json" -d '{"action":"add","name":"Raycast","domain":"raycast.com"}'
curl -X POST https://sottovox.com/api/automate -H "Content-Type: application/json" -d '{"action":"add","name":"Dub","domain":"dub.sh"}'
curl -X POST https://sottovox.com/api/automate -H "Content-Type: application/json" -d '{"action":"run"}'