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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zurdai/n8n-nodes-padelapp

v0.6.4

Published

n8n node for PadelApp logic

Readme

@zurdai/n8n-nodes-padelapp

This is an n8n custom node for handling Padel App logic, allowing you to manage reservations, courts, analytics, and payments within n8n workflows.

Installation

  1. Community Node Installation: In your n8n instance, go to Settings > Community Nodes > Install, and paste the package name: @zurdai/n8n-nodes-padelapp

  2. Manual Installation:

    • Go to your n8n custom directory (e.g. ~/.n8n/custom).
    • clone the repository: git clone https://github.com/Startin-AG/n8n-nodes-padelapp.git
    • Enter the directory: cd n8n-nodes-padelapp
    • Install dependencies: npm install
    • Build the code: npm run build
    • Restart n8n.

Credentials

This node requires Padel App API credentials. You can set up these credentials in n8n:

  1. Navigate to Credentials.
  2. Search for Padel App API.
  3. Enter your API Key or Token (as defined in your implementation).

Resources and Operations

Booking

Manage court reservations.

  • Create: Create a new reservation.
    • Court ID: The ID of the court to book.
    • Start Time: Date and time of the reservation.
    • Duration (Minutes): Length of the booking (default: 60).
    • User ID: ID of the user making the booking.
    • Player Count: Number of players (default: 4).
  • Cancel: Cancel an existing reservation.
    • Reservation ID: The ID of the reservation to cancel.
  • Update: Update reservation details.
    • Reservation ID: The ID of the reservation to update.
    • Update Fields: Fields to update (e.g., Status, Player Count).
  • Get All: Retrieve a list of reservations.
    • Limit: Max number of results to return.

Court

Get information about padel courts.

  • Get All: Retrieve a list of all courts.
  • Status: Check the status of a specific court.
    • Court ID: The ID of the court.

Analytics

Retrieve business insights.

  • Daily Summary: Get revenue and booking stats for a specific date.
    • Date: The date to analyze.

Payment

Manage and check payments.

  • Check Status: Verify the status of a payment.
    • Payment ID: The ID of the payment transaction.

Usage

  1. In n8n, add the Padel App node to your workflow.
  2. Select the desired Resource (e.g., Booking).
  3. Select the Operation (e.g., Create).
  4. Fill in the required parameters (e.g., Court ID, User ID).