---
title: "Get job applications from Sage Recruitment API"
url: "https://lb.getknit.dev/blog/get-job-applications-from-sage-recruitment-api-ybnaue/"
date: "2026-08-13T12:59:58+00:00"
modified: "2026-08-22T15:43:54+00:00"
type: "post"
---

# Get job applications from Sage Recruitment API

[Blog](https://lb.getknit.dev/blog) / [Tutorials](https://lb.getknit.dev/blogs/tutorials/) / Get job applications from Sage Recruitment API [Tutorials](https://lb.getknit.dev/blogs/tutorials/) · August 13, 2026 

Get job applications from Sage Recruitment API
==============================================

 ![](https://storage.googleapis.com/knit-website-media/2026/08/64c34c8eb1ffc79e7f787ecd_Akshat-3-150x150.png)Akshat Jain

3 min read

 

 

 [](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Flb.getknit.dev%2Fblog%2Fget-job-applications-from-sage-recruitment-api-ybnaue%2F) [](https://twitter.com/intent/tweet?url=https%3A%2F%2Flb.getknit.dev%2Fblog%2Fget-job-applications-from-sage-recruitment-api-ybnaue%2F&text=Get%20job%20applications%20from%20Sage%20Recruitment%20API)  

 

 

 

  Table of Contents - [Introduction](#introduction)
- [Get job applications from Sage Recruitment API](#get-job-applications-from-sage-recruitment-api)
- [Overview](#overview)
- [Step-by-Step Guide](#step-by-step-guide)
- [Knit for Sage Recruitment API Integration](#knit-for-sage-recruitment-api-integration)
 
  Introduction
------------

This article is a part of a series of articles covering the Sage Recruitment API in depth, and covers the specific use case of using the Sage Recruitment API to Get job applications from Sage Recruitment API.
You can find all the other use cases we have covered for the Sage Recruitment API along with a comprehensive deep dive on its various aspects like authentication, rate limits etc [here.](/blog/sage-recruitment-api-directory-7svx48/)

Get job applications from Sage Recruitment API
----------------------------------------------

### Overview

To retrieve job applications from the Sage Recruitment API, you can utilize the `listApplicants` and `applicantDetails` endpoints. This guide provides a step-by-step approach to fetch the first name, last name, and email of each candidate who has applied to a specific job.

### Step-by-Step Guide

#### 1. List Applicants for a Specific Job

First, use the `listApplicants` endpoint to get a list of applicants for a specific job position.

```
import requests

# Define the endpoint and parameters
position_id = 123  # Replace with your specific job position ID
url = f"https://subdomain.sage.hr/api/recruitment/positions/{position_id}/applicants"
headers = {
    "X-Auth-Token": "your_auth_token"  # Replace with your actual auth token
}

# Make the GET request
response = requests.get(url, headers=headers)
applicants = response.json().get('data', [])

# Extract applicant IDs
applicant_ids = [applicant['id'] for applicant in applicants]

```

#### 2. Get Details for Each Applicant

Next, use the `applicantDetails` endpoint to fetch detailed information for each applicant.

```
applicant_details = []

for applicant_id in applicant_ids:
    url = f"https://subdomain.sage.hr/api/recruitment/applicants/{applicant_id}"
    response = requests.get(url, headers=headers)
    data = response.json().get('data', {})
    applicant_details.append({
        "first_name": data.get("first_name"),
        "last_name": data.get("last_name"),
        "email": data.get("email")
    })

# Print the applicant details
for detail in applicant_details:
    print(detail)

```

#### 3. Example Output

The output will be a list of dictionaries containing the first name, last name, and email of each applicant.

```
[
    {"first_name": "Jon", "last_name": "Vondrak", "email": "jon.vondrak@example.com"},
    {"first_name": "Samantha", "last_name": "Cross", "email": "sam.cross@example.com"}
]

```

Knit for Sage Recruitment API Integration
-----------------------------------------

For quick and seamless access to [Sage Recruitment](/integration/sage/) API, Knit API offers a convenient solution. By integrating with Knit just once, you can streamline the entire process. Knit takes care of all the authentication, authorization, and ongoing integration maintenance, this approach not only saves time but also ensures a smooth and reliable connection to your [Sage Recruitment](/integration/sage/) API.

---

**Ready to build this integration?**
Explore Knit’s [Sage Recruitment integration](/integration/sage/) or read more about our [Unified ATS API](/integration-categories/unified-ats-api/).

 

 ![](https://storage.googleapis.com/knit-website-media/2026/08/64c34c8eb1ffc79e7f787ecd_Akshat-3-150x150.png)Written by Akshat Jain

Coding chaos into innovation and building from zero to scale

 

 

 

 

 

   Keep Reading
------------

  ![](https://storage.googleapis.com/knit-website-media/2026/08/blog-banner-green-640x400.png) [Tutorials](https://lb.getknit.dev/blogs/tutorials/) 

### [Get all open jobs from Sage Recruitment API](https://lb.getknit.dev/blog/get-all-open-jobs-from-sage-recruitment-api-ehrryr/)

Technical guide on Sage Recruitment API to Get all open jobs from Sage Recruitment API

 August 13, 2026 · 3 min read 

 

   ![](https://storage.googleapis.com/knit-website-media/2026/08/blog-banner-yellow-scaled-640x400.png) [API Directory](https://lb.getknit.dev/blogs/api-directory/) 

### [Sage Recruitment API Directory](https://lb.getknit.dev/blog/sage-recruitment-api-directory-7svx48/)

Learn about the common sage-ats API data models and API end points in this comprehensive sage-ats API directory

 August 13, 2026 · 4 min read 

 

   ![](https://storage.googleapis.com/knit-website-media/2026/08/blog-banner-green-640x400.png) [Tutorials](https://lb.getknit.dev/blogs/tutorials/) 

### [How to Create a Slack Bot in 5 Minutes: A to Z Guide](https://lb.getknit.dev/blog/how-to-create-a-slack-bot/)

You can create your own Slack Bot in just a few minutes with the Knit Unified API. Read this step-by-step…

 August 13, 2026 · 3 min read 

 

  

 

  \#1 in Ease of Integrations
---------------------------

![4.9 out of 5 stars](/wp-content/themes/knit/assets/images/g2/g2-star-rating.svg)

4.9 out of 5 stars on G2

![G2 Leader, Spring 2026](/wp-content/themes/knit/assets/images/g2/g2-leader.svg)![G2 Fastest Implementation, Spring 2026](/wp-content/themes/knit/assets/images/g2/g2-fastest-implementation.svg)![G2 High Performer, Spring 2026](/wp-content/themes/knit/assets/images/g2/g2-high-performer.svg)![G2 Best Est. ROI, Spring 2026](/wp-content/themes/knit/assets/images/g2/g2-best-roi.svg)

 

  Put Integrations on Autopilot. Talk to Experts.
-----------------------------------------------

Knit is loved by customers across the globe due to our seamless product and white glove support. You'll love us too!

 [Talk to a Human](/book-demo)
