npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-webuntis

v0.1.2

Published

n8n node for WebUntis

Readme

n8n-nodes-WebUntis

This is an n8n community node. It lets you use WebUntis in your n8n workflows.

WebUntis is a popular service for school timetables and schedule management used by educational institutions worldwide.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

To install this community node, use the following package name:

n8n-nodes-webuntis

Operations

The WebUntis node supports the following operations:

Timetable

  • Get Week: Retrieve timetable data for a specific week
  • Get Timeframe: Retrieve timetable data for multiple weeks (with configurable lookback period)

Teachers

  • Get All: Retrieve a list of all teachers with their IDs and names

Rooms

  • Get All: Retrieve a list of all rooms with their IDs, names, and long names

Subjects

  • Get All: Retrieve a list of all subjects with their IDs, names, and long names

Credentials

To use this node, you need to create WebUntis API credentials in n8n with the following information:

Prerequisites

  • You must have a valid WebUntis account with access to your school's timetable system
  • Your account must have appropriate permissions to access timetable data

Setting up credentials

  1. In n8n, go to Credentials and create a new WebUntis API credential
  2. Enter your WebUntis login credentials:
    • Username: Your WebUntis username
    • Password: Your WebUntis password

Important Notes

  • Credentials are securely stored and encrypted by n8n

Compatibility

  • Minimum n8n version: 0.198.0
  • Tested with n8n versions: 0.198.0+
  • Node.js compatibility: Node.js 16+

Usage

Basic Timetable Retrieval

  1. Add the WebUntis node to your workflow
  2. Select Timetable as the resource
  3. Choose Get Week operation
  4. Set the date parameter (leave empty for current week)
  5. Configure your WebUntis credentials

Getting Multiple Weeks

  1. Select Timetable resource and Get Timeframe operation
  2. Set the Look Back Weeks parameter to specify how many weeks to retrieve
  3. The node will return combined data from multiple weeks

Teacher/Room/Subject Information

  1. Select the appropriate resource (Teachers, Rooms, or Subjects)
  2. The operation will automatically be set to Get All
  3. The node will return all available items of the selected type

Advanced Options

  • User ID: Leave empty to use the authenticated user's timetable, or specify a different user ID
  • Date: Use YYYY-MM-DD format or n8n's date picker

Output Data Structure

Timetable data includes:

  • Lesson details (start time, end time, date)
  • Teacher information (including substitution teachers)
  • Subject and room assignments
  • Special flags (substitution, cancellation, free periods, etc.)

Teachers/Rooms/Subjects include:

  • ID numbers for API references
  • Display names
  • Long names (where applicable)

Error Handling

The node handles common errors such as:

  • Authentication failures (403 errors)
  • No data available (204 errors)
  • Network connectivity issues

Resources

Version history

1.0.0

  • Initial release
  • Support for timetable retrieval (single week and multiple weeks)
  • Support for teachers, rooms, and subjects data
  • Authentication via WebUntis credentials
  • Error handling for common API issues
  • Compatible with n8n 0.198.0+

Planned Features

  • Support for additional WebUntis data types (classes, holidays, etc.)
  • Enhanced filtering and search capabilities
  • Caching support for improved performance