Campaigns
A campaign defines the characteristics of companies you want to target and the outreach sequences used to engage them. Coldreach continuously monitors your campaign criteria, identifies qualified accounts along with specific signals (buying indicators), and automates multi-step outreach workflows across email and LinkedIn.
How Campaigns Work
- Define your campaign — Set up research queries that define what makes a company a good fit
- Automatic research — Coldreach researches companies against your campaign criteria
- Signal detection — When a company matches, the specific signals are recorded with scores
- Qualified accounts — Browse and export accounts that match your campaign
- Outreach sequences — Automate multi-channel outreach to qualified accounts
API Endpoints
List campaigns
curl -H "x-api-key: YOUR_API_KEY" \
https://api.coldreach.ai/public/v1/campaigns
Get campaign details
curl -H "x-api-key: YOUR_API_KEY" \
https://api.coldreach.ai/public/v1/campaigns/456
Get qualified accounts for a campaign
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/campaigns/123/accounts?from=0&take=25"
Browse campaign contacts
Filter by status: scheduled, in-progress, completed, replied, bounced, unsubscribed.
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/campaigns/456/contacts?status=replied&take=50"
View message history
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/campaigns/456/messages?skip=0&take=25"
Look up a specific account
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/accounts?domain=example.com&icpId=123"
Reply to an assignment
curl -X POST -H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"body": "Thanks for your interest!"}' \
https://api.coldreach.ai/public/v1/assignments/789/reply
See the API Reference for complete request/response details.