# Scrape TV Tropes trope pages to JSON

**Use case:** 

Extract trope title, description, examples and cross-links from any TV Tropes page. Export-ready JSON/CSV.

## Input

```json
{
  "pageUrls": [
    "Main/ChekhovsGun",
    "Main/RedHerring"
  ],
  "includeExamples": true,
  "includeLinks": true,
  "maxPages": 10,
  "monitorMode": false,
  "alertOnChange": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Page",
    "format": "string"
  },
  "page_type": {
    "label": "Type",
    "format": "string"
  },
  "example_count": {
    "label": "Examples",
    "format": "integer"
  },
  "link_count": {
    "label": "Links",
    "format": "integer"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TV Tropes Scraper — Tropes, Examples & Page-Change Monitor](https://apify.com/scrapersdelight/tvtropes-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/tvtropes-scraper) to learn more, explore other use cases, and run it yourself.