Ticketmaster Scraper
Pricing
from $1.50 / 1,000 results
Ticketmaster Scraper
Pricing
from $1.50 / 1,000 results
Rating
0.0
(0)
Developer
MrDoe
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Search Ticketmaster for concerts, sports, theater and family events, then pull full event details — venue, date, coordinates, performers, category and ticket URL — in one normalized, ready-to-use schema.
What it does
This Actor has two modes:
- Search — give it a keyword (artist, team, show, or a general term like "concerts") and it returns every matching upcoming event: name, date, venue with address and coordinates, ticket URL, and status (on sale / cancelled / postponed).
- Get event details — give it one or more event page URLs (your own, or copied straight from this Actor's own search results) and it returns the full record for each: description, cover image, performers/lineup, category, and best-effort ticket pricing when the event page publishes one.
Supports the US, UK, Australian and Canadian Ticketmaster sites.
Why use it
- Build or feed a local/regional events calendar or aggregator
- Track when specific artists, teams or shows go on sale, and where
- Monitor event and venue data across multiple cities or countries in one run
- Get venue coordinates for mapping, distance-based filtering, or venue intelligence
What makes this different
- Two clean operations instead of one do-everything crawl — search cheaply at scale, then only fetch full details for the events you actually care about.
- Normalized schema across every event type (concerts, sports, theater, family) and every supported country site, with consistent field names and units.
- Venue intelligence built in — name, full address, and latitude/longitude on every event, not just a text address.
- Honest output: fields Ticketmaster itself doesn't publish for a given event come back as
null, never guessed.
Data table
| Field | Search | Event details |
|---|---|---|
eventId, name, url, startDate, eventStatus | ✅ | ✅ |
venueName, venueCity, venueLatitude, venueLongitude | ✅ | ✅ |
description, image, performers, category | — | ✅ |
priceMin / priceMax (best-effort) | — | ✅ |
How to use
- Sign up for a free Apify account.
- Open this Actor and click Try for free (or Start).
- Choose an Operation:
- Search events — enter a Search keyword (e.g.
"Taylor Swift","Lakers","Hamilton", or"concerts in Chicago") and pick the Ticketmaster site to search. - Get event details — paste one or more Event URLs.
- Search events — enter a Search keyword (e.g.
- Leave Proxy configuration on (required for reliable results).
- Click Start and export results as JSON, CSV, Excel, or via the API.
Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
operation | string | Yes | search | "search" or "productDetails". |
domain | string | No | ticketmaster.com | Which country's Ticketmaster site to use: ticketmaster.com, ticketmaster.co.uk, ticketmaster.com.au, or ticketmaster.ca. |
query | string | No | "concerts" | Search keyword (used when operation is "search"). |
queries | array | No | [] | Multiple search keywords in one run; overrides query when set. |
eventUrls | array | No | — | Ticketmaster event page URLs (used when operation is "productDetails"). |
maxItems | integer | No | 20 | Maximum events returned per search keyword. 0 = unlimited. Not applied to "productDetails" — every URL you provide is always fetched. |
proxyConfiguration | object | Yes | Residential | Apify Proxy is required; Residential is used by default for reliable results. |
Output
Each dataset item is one event. A _operation field marks which mode produced it ("search" rows have a smaller field set than "productDetails" rows — see the Data table).
Example item (productDetails)
{"_operation": "productDetails","status": "ok","eventId": "1D00643DB15A498C","name": "Staind: Break The Cycle 25th Anniversary Tour","description": "Staind: Break The Cycle 25th Anniversary Tour | Mon • Sep 14, 2026 • 6:00 PM | Northwell at Jones Beach Theater, Wantagh, NY","url": "https://www.ticketmaster.com/staind-break-the-cycle-25th-anniversary-wantagh-new-york-09-14-2026/event/1D00643DB15A498C","image": "https://s1.ticketm.net/dam/a/ee8/4b2c8989-f966-4978-93e1-c974f679aee8_EVENT_DETAIL_PAGE_16_9.jpg","startDate": "2026-09-14T18:00","endDate": "2026-09-14","eventStatus": "scheduled","cancelled": false,"soldOut": null,"category": "Rock","venueName": "Northwell at Jones Beach Theater","venueAddress": "895 Bay Parkway","venueCity": "Wantagh","venueRegion": "NY","venuePostalCode": "11793","venueCountry": "US","venueLatitude": 40.6014755,"venueLongitude": -73.5023618,"venueUrl": "https://www.ticketmaster.com/northwell-at-jones-beach-theater-tickets-wantagh/venue/237654","performers": [{ "name": "Staind", "url": "https://www.ticketmaster.com/staind-tickets/artist/717721" },{ "name": "Seether", "url": "https://www.ticketmaster.com/seether-tickets/artist/828577" }],"priceMin": null,"priceMax": null,"currency": "USD","scrapedAt": "2026-09-14T16:16:51.000Z"}
Usage examples
Find upcoming events for an artist:
{ "operation": "search", "query": "Taylor Swift", "maxItems": 50 }
Search a specific country site:
{ "operation": "search", "domain": "ticketmaster.co.uk", "query": "Coldplay" }
Get full details for events found by a previous search run:
{"operation": "productDetails","eventUrls": [{ "url": "https://www.ticketmaster.com/danzig-new-orleans-louisiana-09-14-2026/event/1B0064D1A7869C3F" }]}
Known Limitations
- Ticket pricing (
priceMin/priceMax) is best-effort: Ticketmaster only publishes it in structured form for some events, so it's frequentlynulleven when tickets are on sale. Use theurlto check current pricing directly when it matters. soldOutandtimezoneare populated on search results but currentlynullonproductDetailsrows — the event page itself doesn't publish them the same way the search feed does.- Very high-demand on-sale events can carry extra queueing/waiting-room protections that may occasionally slow down or block a detail-page fetch; the Actor retries automatically.
- Results reflect Ticketmaster's own listings only — resale/secondary-market listings on other platforms are out of scope.
FAQ
Is this legal? This Actor only collects publicly available event and venue listing data from Ticketmaster's own pages. It is not affiliated with or endorsed by Ticketmaster. You are responsible for complying with Ticketmaster's Terms of Service and applicable data-protection law for your use case.
Which countries are supported? The US, UK, Australian and Canadian Ticketmaster sites, selectable via the domain input.
Can I search and get full details in one run? Run search first to discover events cheaply, then feed the url values you want into a productDetails run — this keeps costs down since you only pay for full detail on events you actually need.
Why is pricing sometimes missing? Ticketmaster doesn't publish a simple price range on every event page — for many events it only appears once you start selecting seats. This Actor never fabricates a price; it returns what the event page itself publishes.
Found a bug or have a feature request? Use the Issues tab on this Actor's Apify Store page.
Legal
This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Ticketmaster. It collects only publicly available data. Use of the output is your responsibility, including compliance with Ticketmaster's Terms of Service and any applicable laws.