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. 🎫
Scrape event details from Ticketmaster search results including event information, venues, dates, prices, and more.
The actor stores results in a dataset, with each item containing:
searchUrl
: Original search URLscrapedAt
: Timestamp of when the data was collectedevent
: Detailed event information including:
searchUrls
: Array of Ticketmaster search URLs to scrapemaxItems
: Maximum number of items to scrape (optional)proxyConfiguration
: Proxy settings (optional)A full explanation of an input example in JSON.
1{ 2 "searchUrls": [ 3 "https://www.ticketmaster.com/search?q=u2" 4 ], 5 "maxItems": 30 6}
The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:
And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.
1[ 2 { 3 "searchUrl": "https://www.ticketmaster.com/search?q=u2", 4 "scrapedAt": "2025-02-08T07:58:42.761Z", 5 "event": { 6 "title": "V-U2 An Immersive Concert Film at Sphere Las Vegas", 7 "id": "17006162413A9D50", 8 "discoveryId": "169ZkAx8KZA51Ckv", 9 "dates": { 10 "dateDisplay": "showDateTime", 11 "startDate": "2025-02-08T03:00:00Z", 12 "onsaleDate": "2024-11-07T18:00:00Z", 13 "spanMultipleDays": false 14 }, 15 "presaleDates": [ 16 { 17 "name": "Verizon Access Featured Venues Offer", 18 "startDateTime": "2025-02-05T01:00:00Z", 19 "endDateTime": "2025-02-08T03:45:00Z" 20 } 21 ], 22 "url": "https://www.ticketmaster.com/vu2-an-immersive-concert-film-at-las-vegas-nevada-02-07-2025/event/17006162413A9D50", 23 "partnerEvent": false, 24 "isPartner": false, 25 "showTmButton": true, 26 "venue": { 27 "city": "Las Vegas", 28 "name": "Sphere", 29 "country": "US", 30 "state": "NV", 31 "url": "https://www.ticketmaster.com/sphere-tickets-las-vegas/venue/189524", 32 "latitude": 36.1207267, 33 "longitude": -115.1642896, 34 "addressLineOne": "255 Sands Avenue", 35 "code": "89169" 36 }, 37 "timeZone": "America/Los_Angeles", 38 "cancelled": false, 39 "postponed": false, 40 "rescheduled": false, 41 "tba": false, 42 "local": true, 43 "sameRegion": false, 44 "soldOut": false, 45 "limitedAvailability": false, 46 "ticketingStatus": "UNKNOWN", 47 "eventChangeStatus": "none", 48 "virtual": false, 49 "addOns": [ 50 { 51 "type": "Parking", 52 "options": [ 53 { 54 "name": "Sphere Parking (V-U2 An Immersive Concert Film at Sphere Las Vegas)", 55 "url": "https://www.ticketmaster.com/sphere-parking-vu2-an-immersive-concert-las-vegas-nevada-02-07-2025/event/17006226DB791D21" 56 } 57 ] 58 } 59 ], 60 "artists": [ 61 { 62 "name": "V-U2 An Immersive Concert Film at Sphere Las Vegas", 63 "url": "https://www.ticketmaster.com/vu2-an-immersive-concert-film-at-tickets/artist/3195873" 64 }, 65 { 66 "name": "U2", 67 "url": "https://www.ticketmaster.com/u2-tickets/artist/736365" 68 } 69 ], 70 "price": { 71 "type": "standard", 72 "currency": "USD", 73 "min": 78 74 }, 75 "majorCategory": { 76 "id": "KZFzniwnSyZfZ7v7na", 77 "canonicalUrls": {}, 78 "major": true 79 } 80 } 81 }, 82 ... 83]
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!