# Batch Fetch Popular TV Show Details and Cast

**Use case:** 

Retrieve detailed information for popular TV shows including cast, episode lists, and ratings. Get data for analytics in JSON, CSV, or Excel format.

## Input

```json
{
  "mode": "showDetails",
  "query": "breaking bad",
  "showId": "169",
  "showIds": [
    "169",
    "82",
    "83",
    "526",
    "1371"
  ],
  "embedCast": true,
  "personId": "1",
  "personIds": [],
  "country": "US",
  "date": "2024-01-10",
  "startPage": 0,
  "maxResults": 20
}
```

## Output

```json
{
  "_mode": {
    "label": "Mode",
    "format": "text"
  },
  "id": {
    "label": "TVMaze ID",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "premiered": {
    "label": "Premiered",
    "format": "date"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "network": {
    "label": "Network",
    "format": "text"
  },
  "url": {
    "label": "TVMaze URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [TVMaze Scraper — TV Shows, Episodes, Cast & Schedule API](https://apify.com/logiover/tvmaze-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/tvmaze-scraper) to learn more, explore other use cases, and run it yourself.