Skip to content
Log in Request a demo

ATS Analytics

To build reports and analyze hiring efficiency, use the following export flow.

Fetch all jobs created or updated during the target period.

  • Method: POST /api/v1/jobs/search
  • Filters: date_updated_from and date_updated_to

Fetch all applicants added to the system.

  • Method: POST /api/v1/applicants/search
  • Filters: date_created_from and date_created_to
  • Note: these may include resumes not yet linked to a job

Fetch candidate records, meaning applicant-to-job assignments.

  • Method: POST /api/v1/candidates/search
  • Filters: date_updated_from and date_updated_to
  • Action: store the returned candidate.id values for the next step

Fetch action history for those candidates.

  • Method: POST /api/v1/actions/search
  • Parameters: pass the candidates_ids collected in the previous step
  • Result: you will see stage transitions, rejection reasons, and other activity events