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-tekion-apc

v0.3.2

Published

n8n community node to work with the Tekion APC API

Readme

n8n-nodes-tekion-apc

Community node for n8n to work with the Tekion APC (2.0) API.

  • Package name: n8n-nodes-tekion-apc
  • License: MIT
  • Author: Maxwell Chamberlain

What this node does

This node communicates with the Tekion Open API and currently supports:

  • Vehicle Inventory
    • Action: Get Many (lists vehicles)
    • Filters:
      • modifiedStartTime (ISO date/time; converted to epoch seconds)
      • status (passed to API)
      • stockType (client-side filtered after the API call)
  • Deals
    • Action: Get Many

You can target either the Sandbox or Production environments via credentials.

Documentation for the platform is available at https://docs.tekioncloud.com.


Installation

You can install this community node in two ways.

Install from the n8n UI (recommended)

  1. In n8n, go to Settings → Community Nodes
  2. Click "Install"
  3. Enter n8n-nodes-tekion-apc
  4. Confirm and restart n8n if prompted

Install on a self-hosted n8n instance

From within your n8n installation directory (or using N8N_CUSTOM_EXTENSIONS, depending on your setup):

npm install n8n-nodes-tekion-apc

Restart n8n after installation so it picks up the new node.


Credentials setup

Create credentials of type Tekion APC API with:

  • App ID (required)
  • App Secret (required)
  • Account Type: Production or Sandbox

These map directly to your Tekion app credentials. The node uses these to fetch a bearer token and call the Open API. Ensure the account type matches the environment for the data you’re targeting.


Using the node in a workflow

  1. Add the node: search for "Tekion APC" in the node selector
  2. Choose credentials: select your saved Tekion APC API credentials
  3. Set parameters:
    • Dealer ID: e.g. techmotors_4_0
    • Resource: Vehicle Inventory or Deal
    • Action: Get Many
  4. Optional filters (Vehicle Inventory → Get Many):
    • modifiedStartTime (ISO date/time)
    • status (passed to API)
    • stockType (filtered client-side after retrieval)

The node outputs the API response as JSON. When stockType is set, results are filtered locally after the API call.


Development

Prerequisites: Node.js and npm, plus access to an n8n instance for testing.

Install dependencies:

npm install

Useful scripts:

  • npm run dev — Start a local n8n environment with this node loaded (via @n8n/node-cli)
  • npm run build — Build the node to dist/
  • npm run build:watch — TypeScript watch mode
  • npm run lint — Lint the project
  • npm run lint:fix — Auto-fix lint issues

Project layout (key parts):

  • credentials/TekionApcApi.credentials.ts — n8n credential type definition
  • nodes/TekionApc/TekionApc.node.ts — node description and execution logic
  • nodes/TekionApc/shared/* — token service and utilities
  • nodes/TekionApc/resources/* — per-resource operations (e.g., Vehicle Inventory)
  • icons/tekion.svg — node icon

Build artifacts are emitted to dist/.


Releasing (maintainers)

This project uses @n8n/node-cli and release-it.

Typical flow:

  1. Ensure changes are committed
  2. Update version (handled by the release script)
  3. Run:
npm run release

This will prepare the build and guide you through tagging and publishing steps as configured. The prepublishOnly script runs n8n-node prerelease to build before publish.


Troubleshooting

  • 401/403 Unauthorized: Verify App ID/App Secret and that Account Type matches the target environment
  • 404/Endpoint issues: Confirm the selected resource/action exists in the target Tekion environment
  • Empty results with stockType: Remember stockType is applied after fetch; remove it to validate raw API data

If issues persist, try re-authenticating credentials and checking your dealer ID.


Changelog

See CHANGELOG.md for notable changes.


License

MIT