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

n8n-nodes-teller-api

v1.0.5

Published

Teller API credential for n8n with mutual TLS support.

Downloads

108

Readme

n8n Teller Credential

Custom credential for n8n that encapsulates Teller's mutual TLS authentication scheme. It lets any n8n node that relies on HTTP requests (for example the built-in HTTP Request node) connect to the Teller Banking API using an Application ID, auth code, and the Teller-issued client certificate pair.

Features

  • Credential stores the Teller Application ID, access token, and mutual-TLS certificates securely, with environment selection (Production, Sandbox, or custom URL).
  • Node exposes a simple List Accounts operation that calls Teller’s /accounts endpoint using the credential.
  • Optional CA bundle field for custom trust chains.
  • Automatically injects mutual TLS options and HTTP basic authentication into every outgoing request that uses the credential or node.
  • Built-in credential test against /accounts.

Installation

  1. Copy this repository into your n8n community nodes directory (for example ~/.n8n/custom/).

  2. Install dependencies and build the project:

    npm install
    npm run build
  3. Restart n8n so it can load the new credential package.

Usage

  1. In the n8n UI open CredentialsCreate Credential and choose Teller API.
  2. Pick the Teller environment (Production, Sandbox, or Custom) and paste the following values obtained from the Teller developer dashboard:
    • Application ID
    • Access Token (value begins with token_)
    • Certificate (PEM) – raw contents of certificate.pem
    • Private Key (PEM) – raw contents of private-key.pem
    • CA Bundle (Optional) – only required if Teller supplied a custom CA chain
  3. Save the credential and run the built-in test to verify connectivity.
  4. Use it from the bundled Teller API node or any HTTP Request node that supports credential selection.
    • Sandbox users can leave the default credentials test in place; the credential will automatically call https://api-sandbox.teller.io when the sandbox environment is selected.

Development

  • npm run dev watches and rebuilds on change.
  • npm run build produces the compiled output in dist/ for n8n to consume.

Notes

  • Teller requires mutually authenticated TLS on every API request. Ensure the certificate and private key stay in PEM format when pasted into the credential fields.
  • Requests default to https://api.teller.io. Override the base URL in individual nodes if you need to target Teller's sandbox endpoints.