Tutorials · August 13, 2026

Get employee details from Personio API

Akshat Jain
2 min read
Table of Contents

Introduction

This article is a part of a series of articles covering the Personio API in depth, and covers the specific use case of using the Personio API to Get employee details from Peronio API.
You can find all the other use cases we have covered for the Personio API along with a comprehensive deep dive on its various aspects like authentication, rate limits etc here.

Get Employee Details from Personio API

Overview

To retrieve employee details such as first name, last name, and date of joining from the Personio API, you can utilize the listEmployees endpoint. Below is a step-by-step guide with Python code snippets to achieve this.

Step-by-Step Guide

1. Set Up Your Environment

Ensure you have the necessary libraries installed:

pip install requests

2. Define API Credentials

Set your API credentials for authentication:

api_url = "https://api.personio.de/v1/company/employees"
headers = {
    "X-Personio-Partner-ID": "your_partner_id",
    "X-Personio-App-ID": "your_app_id",
    "accept": "application/json"
}

3. Make the API Request

Send a GET request to the listEmployees endpoint to fetch the required details:

import requests

params = {
    "attributes[]": ["first_name", "last_name", "hire_date"]
}

response = requests.get(api_url, headers=headers, params=params)

if response.status_code == 200:
    employees = response.json().get("data", [])
    for employee in employees:
        first_name = employee["attributes"].get("first_name")
        last_name = employee["attributes"].get("last_name")
        hire_date = employee["attributes"].get("hire_date")
        print(f"First Name: {first_name}, Last Name: {last_name}, Date of Joining: {hire_date}")
else:
    print(f"Failed to retrieve data: {response.status_code}")

4. Handle the Response

Process the response to extract and display the employee details:

if response.status_code == 200:
    employees = response.json().get("data", [])
    for employee in employees:
        first_name = employee["attributes"].get("first_name")
        last_name = employee["attributes"].get("last_name")
        hire_date = employee["attributes"].get("hire_date")
        print(f"First Name: {first_name}, Last Name: {last_name}, Date of Joining: {hire_date}")
else:
    print(f"Failed to retrieve data: {response.status_code}")

Knit for Personio API Integration

For quick and seamless access to Personio 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 Personio API.


Ready to build this integration?
Explore Knit’s Personio integration or read more about our Unified HRIS API.

Written by Akshat Jain

Coding chaos into innovation and building from zero to scale

Keep Reading

Personio API Directory

Learn about the common Personio API data models and API end points in this comprehensive Personio API directory

August 13, 2026 · 15 min read

#1 in Ease of Integrations

4.9 out of 5 stars

4.9 out of 5 stars on G2

G2 Leader, Spring 2026G2 Fastest Implementation, Spring 2026G2 High Performer, Spring 2026G2 Best Est. ROI, Spring 2026

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