---
title: "Get all open jobs from Sage Recruitment  API"
url: "http://35.223.47.52/blog/get-all-open-jobs-from-sage-recruitment-api-ehrryr/"
date: "2026-08-13T12:59:57+00:00"
modified: "2026-08-22T15:43:54+00:00"
type: "post"
---

# Get all open jobs from Sage Recruitment  API

[Blog](http://35.223.47.52/blog) / [Tutorials](http://35.223.47.52/blogs/tutorials/) / Get all open jobs from Sage Recruitment API [Tutorials](http://35.223.47.52/blogs/tutorials/) · August 13, 2026 

Get all open jobs 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=http%3A%2F%2F35.223.47.52%2Fblog%2Fget-all-open-jobs-from-sage-recruitment-api-ehrryr%2F) [](https://twitter.com/intent/tweet?url=http%3A%2F%2F35.223.47.52%2Fblog%2Fget-all-open-jobs-from-sage-recruitment-api-ehrryr%2F&text=Get%20all%20open%20jobs%20from%20Sage%20Recruitment%20%20API)  

 

 

 

  Table of Contents - [Introduction](#introduction)
- [Get all open jobs from Sage Recruitment API](#get-all-open-jobs-from-sage-recruitment-api)
- [Overview](#overview)
- [Step-by-Step Guide](#step-by-step-guide)
- [Conclusion](#conclusion)
- [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 all open jobs 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 all open jobs from Sage Recruitment API
-------------------------------------------

### Overview

To retrieve all open jobs from the Sage Recruitment API, you need to make a GET request to the `/api/recruitment/positions` endpoint with the appropriate query parameters. Below is a step-by-step guide on how to achieve this using Python.

### Step-by-Step Guide

#### 1. Set Up Your Environment

Ensure you have the `requests` library installed. You can install it using pip:

```
pip install requests
```

#### 2. Define the API Endpoint and Parameters

Set the API endpoint and the required headers, including the authorization token. Use the query parameter `status=open` to filter for open jobs.

```
import requests

# Define the API endpoint
url = "https://subdomain.sage.hr/api/recruitment/positions"

# Set the headers
headers = {
    "X-Auth-Token": "your_auth_token_here"
}

# Set the query parameters
params = {
    "status": "open",
    "per_page": 100  # Adjust as needed
}

# Make the GET request
response = requests.get(url, headers=headers, params=params)

# Check if the request was successful
if response.status_code == 200:
    open_jobs = response.json()
    print(open_jobs)
else:
    print(f"Failed to retrieve open jobs: {response.status_code}")

```

#### 3. Handle Pagination

If there are multiple pages of results, you need to handle pagination to retrieve all open jobs. Below is an example of how to do this:

```
import requests

# Define the API endpoint
url = "https://subdomain.sage.hr/api/recruitment/positions"

# Set the headers
headers = {
    "X-Auth-Token": "your_auth_token_here"
}

# Initialize parameters
params = {
    "status": "open",
    "per_page": 100,  # Adjust as needed
    "page": 1
}

# Initialize a list to store all open jobs
all_open_jobs = []

while True:
    # Make the GET request
    response = requests.get(url, headers=headers, params=params)
    
    # Check if the request was successful
    if response.status_code == 200:
        data = response.json()
        all_open_jobs.extend(data["data"])
        
        # Check if there are more pages
        if data["meta"]["next_page"]:
            params["page"] = data["meta"]["next_page"]
        else:
            break
    else:
        print(f"Failed to retrieve open jobs: {response.status_code}")
        break

print(all_open_jobs)

```

### Conclusion

By following these steps, you can retrieve all open jobs from the Sage Recruitment API. Adjust the parameters as needed to fit your specific requirements.

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-red-scaled-640x400.png) [Tutorials](http://35.223.47.52/blogs/tutorials/) 

### [Get job applications from Sage Recruitment API](http://35.223.47.52/blog/get-job-applications-from-sage-recruitment-api-ybnaue/)

Technical guide on Sage Recruitment API to Get job applications 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](http://35.223.47.52/blogs/api-directory/) 

### [Sage Recruitment API Directory](http://35.223.47.52/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](http://35.223.47.52/blogs/tutorials/) 

### [How to Create a Slack Bot in 5 Minutes: A to Z Guide](http://35.223.47.52/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)
