Milano Cortina 2026 Ticket Scraper avatar
Milano Cortina 2026 Ticket Scraper

Pricing

Pay per usage

Go to Apify Store
Milano Cortina 2026 Ticket Scraper

Milano Cortina 2026 Ticket Scraper

Scrapes resale tickets from Milano Cortina 2026 Olympics. Extract pricing, seat locations, and availability for multiple events in a single run.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Jan

Jan

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

2

Monthly active users

3 days ago

Last modified

Share

Milano Cortina 2026 Ticket Resale Scraper

An Apify Actor that scrapes resale ticket offers from the Milano Cortina 2026 Olympic Games ticketing platform.

Features

  • Scrapes resale ticket offers from multiple Milano Cortina 2026 event pages in a single run
  • Allows custom naming of events for easy identification
  • Extracts detailed ticket information including:
    • Ticket category and pricing
    • Seat location (entrance, block, row, seats)
    • Number of tickets in offer
    • Price per ticket calculation
  • Uses Playwright with Camoufox for reliable scraping
  • Outputs all events in a single structured JSON result

Input

The Actor accepts the following input parameters:

{
"events": [
{
"name": "Hockey FRA-CZE",
"url": "https://tickets.milanocortina2026.org/en/event/hockey-su-ghiaccio-milano-santa-giulia-ice-hockey-arena-19253526/?affiliate=26O"
},
{
"name": "Hockey USA-CAN (Categoria A, Row 5)",
"url": "https://tickets.milanocortina2026.org/en/event/another-hockey-game-12345678/?affiliate=26O",
"filter": {
"category": "Categoria A",
"numberOfTickets": 2,
"row": "5"
}
}
],
"maxRequestsPerCrawl": 100
}

Input Parameters

  • events (required): Array of events to scrape. Each event must have:
    • name: Custom name to identify the event in results. Can be any string - this is used to identify the event in the output JSON, making it easier to match results with the events you scraped.
    • url: Milano Cortina 2026 event page URL
    • filter (optional): Object to filter tickets. Supported properties:
      • category: Filter by ticket category (e.g., "Categoria A", "Categoria B")
      • numberOfTickets: Filter by exact number of tickets in offer
      • row: Filter by specific row number
  • maxRequestsPerCrawl (optional): Maximum number of pages to scrape (default: 100, 0 = unlimited)

Output

The Actor outputs all events in a single JSON result:

{
"events": [
{
"name": "Hockey FRA-CZE",
"url": "https://tickets.milanocortina2026.org/en/event/...",
"totalOffers": 28,
"resaleOffers": [
{
"offerId": "1e295390-5a0d-4326-a7a8-683f8e6ce75e",
"category": "Categoria B",
"numberOfTickets": 1,
"totalPrice": 88,
"pricePerTicket": 88.00,
"entrance": "A",
"block": "C2",
"row": "3",
"seats": "21"
}
]
},
{
"name": "Hockey USA-CAN",
"url": "https://tickets.milanocortina2026.org/en/event/...",
"totalOffers": 15,
"resaleOffers": [...]
}
],
"totalEvents": 2,
"scrapedAt": "2024-12-14T12:00:00.000Z"
}