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-ticketmaster

v0.0.1

Published

Ticketmaster custom node for n8n (Discovery API integration)

Readme

n8n-nodes-ticketmaster

n8n is a fair-code licensed workflow automation platform.

This is a custom n8n community node providing full integration with the Ticketmaster Discovery API.


📚 Table of Contents

  • Features
  • Installation
  • Authentication
  • Usage
  • Roadmap
  • Resources
  • Version history

📁 Features

  • Discovery API integration covering all key resources:
    • Events
      • Search (/events)
      • Get Details (/events/{id})
      • Get Images (/events/{id}/images)
    • Attractions
      • Search (/attractions)
      • Get Details (/attractions/{id})
    • Classifications
      • Search (/classifications)
      • Get Details (/classifications/{id})
    • Venues
      • Search (/venues)
      • Get Details (/venues/{id})
  • ✅ Complete support for the official Ticketmaster query parameters as “Additional Fields”
  • ✅ Displays all results as structured JSON — ready for downstream mapping or transformation
  • ✅ Modular, maintainable architecture (each operation is self-contained)
  • ✅ Works seamlessly within the n8n editor for no‑code workflows

📦 Installation

Follow the installation guide in the n8n community nodes documentation.

  1. Go to Settings → Community Nodes

  2. Select Install

  3. In the Install dialog, enter the npm package name:

    n8n-nodes-ticketmaster
  4. Agree to the notice for third‑party code and click Install

  5. The new node will appear as Ticketmaster in your n8n node list


🔐 Authentication

API key authentication

  1. Create a Ticketmaster Developer Account
  2. Go to My Apps → Create App
  3. Copy your API Key
  4. In n8n, open any Ticketmaster node and select or create new credentials
  5. Paste your API Key into the credentials field

🚀 Usage

  • Use the Resource dropdown to select Event, Attraction, Classification, or Venue
  • Use the Operation dropdown to choose the desired action (e.g., Search, Get Details, etc.)
  • Configure filters in Additional Fields
  • Connect the node to any processing or storage node downstream

Example workflow ideas:

  • Search for events by keyword and location
  • Save upcoming concerts to a Google Sheet
  • Fetch venue details for event aggregation
  • Build marketing automations with live Ticketmaster data

🚧 Roadmap

  • [ ] Add pagination support (multi-page fetching)
  • [ ] Add caching utilities for high-volume searches
  • [ ] Extend to include the Ticketmaster Commerce API
  • [ ] Add dynamic dropdown options (loadOptions) for dependent filters

🔗 Resources


📜 Version history

  • 0.0.1 – Initial release
    • Implemented Events, Attractions, Classifications, Venues
    • Added full query parameter support and single‑page search for all endpoints