VOOZH about

URL: https://apify.com/bovi/ticketmaster-radar

โ‡ฑ Ticketmaster Alerts โ€” Presale Codes & On-Sale Radar ยท Apify


๐Ÿ‘ Ticketmaster Radar โ€” Presale Codes, Alerts & On-Sale avatar

Ticketmaster Radar โ€” Presale Codes, Alerts & On-Sale

Pricing

from $4.75 / 1,000 on-sale / presale alerts

Go to Apify Store

Ticketmaster Radar โ€” Presale Codes, Alerts & On-Sale

**Stateful change-feed for Ticketmaster events** โ€” NOT a one-shot dump. Tracks: (1) **Presale & on-sale calendar** โ€” named windows + ISO times from presaleDates[] (zero incumbents ship this).

Pricing

from $4.75 / 1,000 on-sale / presale alerts

Rating

0.0

(0)

Developer

๐Ÿ‘ Vitalii Bondarev

Vitalii Bondarev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Ticketmaster On-Sale & Presale Radar

The only Ticketmaster actor that ships a stateful change-feed โ€” not a one-shot dump. The Radar tracks three data types that zero incumbents ship, rebuilt every run by diffing the current payload against the previous run's state stored in Apify KV.

What Makes This Actor Different

Every other Ticketmaster actor on the Apify Store is a one-shot metadata dump. They scrape and return the same static fields each run. The Radar is designed for scheduled monitoring โ€” you set it to run hourly or daily, and it only emits events that actually changed. No noise, no duplicate data, no manual diffing.

FeatureThis actoreasyapi/ticketmaster-events-scraperparseforge/ticketmaster-scraper
Presale calendar (named windows + ISO times)โœ“โœ—โœ—
On-sale date trackingโœ“partialpartial
Change-detection between runsโœ“โœ—โœ—
Resale window detectionโœ“โœ—โœ—
Price delta (Discovery API)optionalโœ—partial
KV-backed stateful storeโœ“โœ—โœ—
No advanced-protection dependencyโœ“โœ“โœ“
Price$5/1000$4.99/1000unknown

Three Confirmed Data Types

1. Presale & On-Sale Calendar

The actor extracts presaleDates[] from Ticketmaster's open search payload โ€” named windows with ISO start and end times. For example, a Taylor Swift show might return:

  • "Amex Presale Ticketsยฎ" โ€” 2025-01-07T10:00:00Z to 2025-01-09T23:59:00Z
  • "Onsale To General Public" โ€” 2025-01-10T10:00:00Z onwards
  • "Resale" โ€” separate resale window

Live-verified on 20/20 Olivia Rodrigo events in the pass-3 probe (2026-06-04). Zero incumbents ship this data. Resellers and event analysts plan their purchase timing around exactly this data.

2. Availability Change-Detection

Re-polls /search on every scheduled run and diffs:

  • soldOut โ€” event went sold out
  • limitedAvailability โ€” limited tickets remaining
  • ticketingStatus โ€” changes between PRESALE / ON_SALE / CANCELLED
  • eventChangeStatus โ€” event rescheduled, cancelled, postponed

Emits only the events where something changed (in delta mode). The changed_fields array in every record tells you exactly what flipped. The change_type field gives a single human-readable label: sold_out_change, availability_change, status_change, presale_calendar_change, price_change, or new_event.

3. Price Delta (Optional)

When you supply a free Ticketmaster Discovery API key (available at developer.ticketmaster.com), the actor enriches each event with priceRanges (min/max, currency) and tracks price changes between runs. Without the key, the actor still extracts price ranges that appear in the search payload โ€” coverage is lower but setup is zero.

How to Use

Basic presale monitor (no API key required)

{
"queries":["Taylor Swift","Coldplay"],
"maxEventsPerQuery":100,
"stateMode":"delta"
}

Schedule this run to repeat every 6โ€“12 hours. Only new and changed events will appear in the dataset.

Presale-only filter

{
"queries":["Beyonce","Drake"],
"stateMode":"presale",
"maxEventsPerQuery":200
}

Returns only events that have presale calendar data โ€” ideal for resellers who want to plan presale purchases.

Full export with price tracking

{
"queries":["EDC Las Vegas 2025"],
"stateMode":"full",
"discoveryApiKey":"YOUR_FREE_KEY_HERE",
"maxEventsPerQuery":400
}

Output Fields

FieldDescription
idTicketmaster event ID
nameEvent name
event_dateEvent date (YYYY-MM-DD)
onsale_dateOn-sale date
presale_datesArray of {name, start, end} presale windows
presale_countNumber of presale windows
has_presaleTrue if any presale window exists
has_general_onsaleTrue if a "general public" onsale window exists
has_resale_windowTrue if a resale window exists
sold_outBoolean โ€” is the event sold out?
limited_availabilityBoolean โ€” limited tickets remaining?
ticketing_statusON_SALE / PRESALE / CANCELLED / etc.
event_change_statusRescheduled, postponed, cancelled signal
price_minMinimum ticket price
price_maxMaximum ticket price
price_currencyCurrency code
segment / genre / subgenreEvent classification
venue_name / venue_city / venue_stateVenue details
changed_fieldsList of fields that changed since last run
change_typeSingle label: new_event, sold_out_change, etc.
is_newTrue if first time this event was seen
urlTicketmaster event URL
scraped_atISO timestamp of this run

Input Parameters

ParameterTypeDefaultDescription
queriesstring[]requiredSearch terms to monitor
maxEventsPerQueryinteger100Max events to fetch per query
stateModedelta/full/presaledeltaWhat to emit
discoveryApiKeystringโ€”Ticketmaster Discovery API key (optional)
proxyConfigurationobjectโ€”Apify proxy config (RESIDENTIAL recommended)

Pricing โ€” Pay Per Changed Event

$5.00 per 1,000 records (PPE โ€” pay per result). In delta mode you only pay for events that actually changed or are new โ€” not for scanning 100 events to find 3 changed ones. The stateful design means a reseller monitoring 50 artists pays almost nothing on quiet days and only pays when presales open or availability shifts.

Access Approach

Uses the robots-permitted HTML /search path only. Confirmed 200 from Apify datacenter IPs with 8ร— rapid sequential requests, no advanced-protection challenge triggered (pass-3 live probe, 2026-06-04). Apify RESIDENTIAL proxy is recommended for high-frequency scheduled runs to avoid shared-DC-IP rate-limits on Fastly CDN.

The protection-walled ISMDS tier (per-seat live inventory) is intentionally excluded โ€” it is robots-Disallowed and requires a browser-minted access token. This actor does not promise per-seat data.

Use with AI Agents (MCP)

Callable as a tool from AI agents via Apify MCP:

{
"mcpServers":{
"apify":{
"command":"npx",
"args":[
"mcp-remote",
"https://mcp.apify.com/?tools=bovi/ticketmaster-radar",
"--header",
"Authorization: Bearer <YOUR_APIFY_TOKEN>"
]
}
}
}

Not affiliated with Ticketmaster or Live Nation. Uses the robots-permitted HTML search surface.

Integrations

Built for ticket resellers and event-industry analysts tracking presale windows, on-sale dates, and price deltas over time โ€” the JSON/dataset output drops into the tools you already run, no glue code:

  • n8n / Make / Zapier โ€” trigger a run or pipe every new dataset item into 500+ apps (Google Sheets, Airtable, Slack, HubSpot, your database) with no code: n8n, Make, Zapier.
  • Webhooks โ€” fire your own endpoint the moment a run finishes, to push results straight into your pipeline (docs).
  • MCP server โ€” expose this actor as a tool to Claude, Cursor, or any MCP client so an AI agent can pull this data mid-conversation (guide).
  • API & SDKs โ€” fetch the dataset as JSON, CSV, or Excel through the Apify REST API or the Python / JS SDKs.

See all Apify integrations.

More scrapers from our toolkit

Building a data pipeline? These actors pair well with this one โ€” each runs on your own Apify account with the same pay-per-result pricing, no subscription:

Chain any of them together from the Integrations tab (the Run succeeded trigger) to build a multi-step workflow โ€” one actor's output feeds the next.

You might also like

Ticketmaster Scraper

solidcode/ticketmaster-scraper

[๐Ÿ’ฐ $2.0 / 1K] Extract live events from Ticketmaster โ€” concerts, sports, theater, arts, and family shows. Search by keyword or paste Ticketmaster URLs. Returns one row per event with venue, geo coordinates, dates, on-sale and presale times, lineup, and availability status.

Ticketmaster Scraper

hoholabs/ticketmaster-scraper

Fetch events, attractions, venues, and classifications from the Ticketmaster Discovery API. Requires a free Ticketmaster API key.

Ticketmaster Event Scraper

labrat011/event-ticket-scraper

Search concerts, sports, theater, and live events from Ticketmaster by keyword, location, date, or genre. Returns ticket prices, venue details, presale dates, seat maps, and direct purchase links as clean JSON. Works as an MCP tool for AI agents.

Ticketmaster France & Spain Scraper

techforce.global/ticketmaster-fr-es-scraper

Scrapes event details, venue info, and artist data from ticketmaster.fr and ticketmaster.es by category.

๐Ÿ‘ User avatar

Techforce Global

4

Ticketmaster Reviews Scraper

getdataforme/ticketmaster-reviews-scraper

The TicketMaster Reviews Scraper efficiently extracts user reviews from TicketMaster event pages, providing insights into customer experiences....

Ticketmaster Scraper

lhotanova/ticketmaster-scraper

Scrapes events from Ticketmaster.com based on their categories, genres, location and date. Enhances Ticketmaster's built-in event search by searching multiple categories and genres at once. Provides dataset sorting options corresponding to the Ticketmaster's UI.

๐Ÿ‘ User avatar

Kristรฝna Lhoลฅanovรก

611

1.0

Ticketmaster Scraper

unfenced-group/ticketmaster-scraper

Scrape live Ticketmaster events across 17 markets โ€” titles, artists, dates, venues with geo-coordinates, on-sale times, genre classification and ticketing status. Search, browse by category, or use start URLs.

๐Ÿ‘ User avatar

Unfenced Group

2

Ticketmaster Scraper

saswave/ticketmaster-scraper

$0.30 / 1,000 results. The Ticketmaster Scraper is a professional-grade extraction tool designed to track real-time event listings, venue specifications, and tour schedules from website ticketmaster.com

Ticketmaster Events Scraper ๐ŸŽซ

easyapi/ticketmaster-events-scraper

A powerful scraper that extracts comprehensive event data from Ticketmaster search results, including event details, venues, dates, prices, and availability status. Perfect for event monitoring, market research, and competitive analysis. ๐ŸŽซ

Ticketmaster Artist Reviews Scraper

saswave/ticketmaster-artist-reviews-scraper

Ticketmaster Reviews Scraper is a specialized extraction tool designed to capture real-time audience feedback from thousands of events, venues, and artists worldwide.