Our API is designed for developers, with comprehensive documentation and support.
Modern, well-documented REST endpoints for all your integration needs.
OAuth 2.0 and API key authentication options for maximum security.
Real-time event notifications for candidate updates, status changes, and more.
Official SDKs for Python, Node.js, and Ruby to get started quickly.
A preview of what you can build with the estana API.
/api/v1/candidatesList all candidates with filtering and pagination/api/v1/candidatesCreate a new candidate record/api/v1/jobsList all job openings/api/v1/applicationsSubmit an application for a job/api/v1/pipeline/:jobIdGet pipeline status for a specific job/api/v1/candidates/:id/stageMove a candidate to a different stageGet up and running in minutes with our intuitive API.
// Fetch all candidates for a job
const response = await fetch(
'https://api.estanarecruit.com/v1/candidates?jobId=123',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const candidates = await response.json();
console.log(candidates);