# Scrape Lex Fridman transcripts by guest slug

**Use case:** 

Pass guest slugs to fetch specific Lex Fridman transcripts in bulk. Returns guest, title, text and URL per episode.

## Input

```json
{
  "episodeUrls": [
    "sam-altman",
    "jensen-huang",
    "elon-musk"
  ],
  "crawlAll": false,
  "transcriptFormats": [
    "txt"
  ],
  "maxEpisodes": 0,
  "monitorMode": false,
  "alertOnNewEpisode": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "episode_number": {
    "label": "#",
    "format": "integer"
  },
  "guest": {
    "label": "Guest",
    "format": "string"
  },
  "episode_title": {
    "label": "Title",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Lex Fridman Podcast Transcript Scraper — Speakers & Chapters](https://apify.com/scrapersdelight/lexfridman-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/lexfridman-transcript-scraper) to learn more, explore other use cases, and run it yourself.