# Salesforce Webinar Extractor

**Use case:** 

Extract Salesforce webinar titles, dates, speakers, CTAs, registration links, and evidence snippets.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.salesforce.com/events/webinars/"
    }
  ],
  "domains": [
    "salesforce.com"
  ],
  "maxPagesPerDomain": 25,
  "maxResults": 100,
  "includeKeywords": [
    "webinar",
    "event",
    "demo",
    "training"
  ],
  "excludeKeywords": [],
  "statuses": [
    "upcoming",
    "on-demand",
    "unknown"
  ],
  "useProxy": false,
  "proxyCountryCode": "US",
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "eventTitle": {
    "label": "Event title"
  },
  "status": {
    "label": "Status"
  },
  "startDate": {
    "label": "Start date"
  },
  "hostCompany": {
    "label": "Host"
  },
  "registrationUrl": {
    "label": "Registration URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "eventType": {
    "label": "Type"
  },
  "topics": {
    "label": "Topics"
  },
  "confidence": {
    "label": "Confidence"
  },
  "discoveredAt": {
    "label": "Discovered at"
  }
}
```

## About this Actor

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