Connect what actually ships
Honest status from the product docs: live with credentials, optional OAuth, stubbed, or planned. No fake marketplace of disconnected tools.
Real integration status
Only tools that exist in the product docs. Configure credentials where required.
Post jobs when org credentials are configured
Indeed
Post jobs when org credentials are configured
Glassdoor
Post jobs when org credentials are configured
SMTP Email
Nodemailer — configure SMTP in .env
Business API candidate messaging
Slack
Planned — not connected yet
Outlook
Planned — not connected yet
Google Calendar
Local events by default; OAuth sync optional
Checkr
Background checks via Checkr API
Zapier
Webhook-based automation
Chrome Extension
LinkedIn one-click import
OpenAI
Optional AI parse, rank, screen, JD, email
SSO / SAML
Opt-in enterprise authentication
DocuSign
Stub — workflow ready, bring your own SDK
REST API
App API routes for candidates, jobs, and more
Webhooks
Event push for automation
Auto-Sync
Connected integrations sync automatically. No manual data entry needed.
Enterprise Security
All connections use OAuth 2.0 and are encrypted end-to-end.
Workflow Automation
Connect Zapier to automate tasks across 5000+ apps.
Extend via REST routes & webhooks
The codebase includes REST API routes for auth, candidates, jobs, applications, calendar, messaging, and premium tools — plus Zapier-style webhooks. You own the source, so you can extend it further.
- REST routes for core ATS resources
- Premium tool endpoints (search, email, scores, offers)
- Zapier / webhook event push
- JWT cookie session auth
- Optional OpenAI AI routes
- Docs in README and docs/API.md
1// Example: list candidates from your deployed app2const res = await fetch(3 'https://your-ats.example.com/api/candidates',4 {5 headers: {6 'Cookie': 'session=...', // JWT httpOnly cookie auth7 'Content-Type': 'application/json',8 }9 }10);1112const data = await res.json();13// Returns candidates from your PostgreSQL databaseReady to wire up real integrations?
Configure SMTP, job boards, Checkr, WhatsApp, Zapier, or OpenAI in your environment — or extend the source yourself.
Full source code license