# Scrape All Talks by Renowned TED Speakers

**Use case:** 

Compile a comprehensive list of all talks from specific influential TED speakers to analyze their body of work and recurring themes. This helps researchers and 

## Input

```json
{
  "mode": "byUrls",
  "talkUrls": [
    "https://www.ted.com/talks/malcolm_gladwell_choice_happiness_and_spaghetti_sauce",
    "https://www.ted.com/talks/elizabeth_gilbert_your_elusive_creative_genius",
    "https://www.ted.com/talks/brene_brown_the_power_of_vulnerability"
  ],
  "topic": "creativity",
  "sort": "popular",
  "language": "en",
  "maxItems": 25
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "speaker": {
    "label": "Speaker"
  },
  "durationSeconds": {
    "label": "Duration seconds"
  },
  "viewedCount": {
    "label": "Viewed count"
  },
  "publishedAt": {
    "label": "Published at"
  },
  "language": {
    "label": "Language"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

This example demonstrates how to use [TED Talks Scraper](https://apify.com/crawlerbros/ted-talks-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/ted-talks-scraper) to learn more, explore other use cases, and run it yourself.