# Public Webinar Scraper for Competitor Event Pages

**Use case:** 

Scrape public webinar, demo, workshop, speaker, date, topic, and registration URL data from company event pages.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.salesforce.com/resources/webinars/"
    }
  ],
  "maxItems": 50,
  "maxPagesPerDomain": 20,
  "crawlDepth": 1,
  "sameDomainOnly": true,
  "includePastEvents": false,
  "keywords": [
    "webinar",
    "demo",
    "workshop",
    "virtual event",
    "register"
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "registrationUrl": {
    "label": "Registration URL"
  },
  "ctaText": {
    "label": "CTA text"
  },
  "startDate": {
    "label": "Start date"
  },
  "endDate": {
    "label": "End date"
  },
  "timezone": {
    "label": "Timezone"
  },
  "status": {
    "label": "Status"
  },
  "speakers": {
    "label": "Speakers"
  },
  "hostCompany": {
    "label": "Host company"
  },
  "topics": {
    "label": "Topics"
  },
  "description": {
    "label": "Description"
  },
  "detectedFrom": {
    "label": "Detected from"
  },
  "confidence": {
    "label": "Confidence"
  },
  "contentHash": {
    "label": "Content hash"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Public Webinar Event Finder](https://apify.com/automation-lab/public-webinar-event-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/public-webinar-event-finder) to learn more, explore other use cases, and run it yourself.