Research & Jobs
Coldreach continuously researches companies to identify buying signals. The jobs endpoint gives you direct access to job posting data for any company domain.
Job Openings API
Search job openings by company domain with cursor-based pagination:
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/jobs/example.com?take=50"
Filtering by Date
Use the since parameter to only get jobs first seen after a specific date:
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/jobs/example.com?since=2025-01-01T00:00:00Z"
Pagination
Use the next cursor from the response to paginate:
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.coldreach.ai/public/v1/jobs/example.com?cursor=1234567890"
Analytics
Get a high-level overview of your organization's outreach performance:
curl -H "x-api-key: YOUR_API_KEY" \
https://api.coldreach.ai/public/v1/analytics/overview
This returns aggregate counts for campaigns, contacts sent/opened/replied, bounces, and unsubscribes.
See the API Reference for complete request/response details.