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-seatgeek-api

v1.1.0

Published

n8n community node for SeatGeek Data API - AI-powered demand scores, sellout predictions & price tracking

Readme

n8n-nodes-seatgeek-api

n8n community node for SeatGeek Data API - AI-powered event data with demand scores, sellout predictions & price tracking.

v1.1.0 - Now with Browse by Category & improved comedy support! 😂

🔥 Features the Official API Doesn't Have

| Feature | Free SeatGeek API | This Node | |---------|-------------------|-----------| | Demand Score (0-100) | ❌ | ✅ | | Sellout Prediction | ❌ | ✅ | | Price Direction | ❌ | ✅ | | Persistent Price History | ❌ | ✅ | | Deal Score Messages | ❌ | ✅ | | Browse by Category | ❌ | ✅ | | Setup Required | Register + API key | Just add Apify token |

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-seatgeek-api and click Install

Manual Installation

npm install n8n-nodes-seatgeek-api

Prerequisites

Operations

Search Events

Search for events by artist, team, or keyword.

{
  "searchQuery": "Taylor Swift",
  "location": "New York",
  "maxResults": 50
}

Browse by Category (NEW!)

Browse events by type without a specific search query.

{
  "browseEventType": "comedy",  // concert, sports, theater, comedy, festival
  "browseLocation": "Denver",   // optional
  "maxResults": 25
}

Supported Categories:

  • 🎵 Concerts - Live music, tours
  • 🏀 Sports - NBA, NFL, MLB, NHL, etc.
  • 🎭 Theater - Broadway, musicals
  • 😂 Comedy - Stand-up (returns nationwide results)
  • 🎪 Festivals - Music festivals

Note: Comedy returns nationwide results to ensure reliable data. All 6 event types are now working!

Get Events by Location

Get all events in a specific city or venue.

{
  "location": "Denver, CO",
  "eventType": "concert",
  "maxResults": 100
}

Track Prices (Premium Features)

Get events with AI-powered insights:

{
  "searchQuery": "Lakers",
  "premiumFeatures": {
    "includePriceHistory": true,
    "includeResaleTrends": true
  }
}

Output includes:

{
  "title": "Los Angeles Lakers vs Denver Nuggets",
  "lowestPrice": 89,
  "dealScoreMessage": "👍 Good Deal",
  "resaleTrends": {
    "demandScore": 78,
    "priceDirection": "up",
    "predictedSellout": false
  },
  "priceHistory": [
    {"timestamp": "2026-01-24", "lowestPrice": 95},
    {"timestamp": "2026-01-25", "lowestPrice": 89}
  ]
}

Output Fields

Core Event Data

| Field | Type | Description | |-------|------|-------------| | id | string | SeatGeek event ID | | title | string | Event name | | type | string | concert, sports, theater, etc. | | dateTime | string | UTC timestamp | | dateTimeLocal | string | Local timestamp |

Pricing

| Field | Type | Description | |-------|------|-------------| | lowestPrice | number | Cheapest ticket price | | highestPrice | number | Most expensive ticket | | averagePrice | number | Average price | | listingCount | number | Available listings | | dealScore | number | 0-1 value rating | | dealScoreMessage | string | "🔥 Amazing Deal!", etc. |

AI-Powered Insights (Unique!)

| Field | Type | Description | |-------|------|-------------| | resaleTrends.demandScore | number | 0-100 demand indicator | | resaleTrends.priceDirection | string | "up", "down", "stable" | | resaleTrends.predictedSellout | boolean | Will this event sell out? | | priceHistory | array | Historical price points |

Venue & Performer

| Field | Type | Description | |-------|------|-------------| | venue.name | string | Venue name | | venue.city | string | City | | venue.state | string | State | | venue.capacity | number | Venue capacity | | performer.name | string | Artist/team name | | performer.genres | array | Music genres |

Example Workflows

Price Drop Alert

  1. Schedule Trigger - Run daily
  2. SeatGeek Data API - Track prices for "Taylor Swift"
  3. IF Node - Check if priceDirection === "down"
  4. Slack - Send alert "Prices dropping for Taylor Swift!"

High Demand Alert

  1. Schedule Trigger - Run every 6 hours
  2. SeatGeek Data API - Track prices for events
  3. IF Node - Check if demandScore > 80
  4. Email - Send "High demand alert - buy now!"

Sellout Prediction

  1. HTTP Request - Get list of events to monitor
  2. SeatGeek Data API - Track prices with resale trends
  3. IF Node - Check if predictedSellout === true
  4. Telegram - Alert "Event predicted to sell out!"

Credentials

Apify API

| Field | Description | |-------|-------------| | API Token | Your Apify API token from console.apify.com |

Pricing

This node uses the SeatGeek Data API Apify actor:

  • $0.01 per event extracted
  • Premium features (price history, resale trends) included at no extra cost

Support

License

MIT


Built with 🦉 by HyperCognate | AI-powered intelligence the official API doesn't provide.