# NASA YouTube Shorts Data Scraper

**Use case:** 

Extract data from NASA's YouTube Shorts collection, including video titles, views, and publication details for up to 100 videos.

## Input

```json
{
  "channels": [
    "@NASA"
  ],
  "contentType": "shorts",
  "country": "US",
  "language": "en",
  "maxVideos": 100,
  "maxResults": 0
}
```

## Output

```json
{
  "channelTitle": {
    "label": "Channel",
    "format": "string"
  },
  "title": {
    "label": "Video title",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "integer"
  },
  "publishedTime": {
    "label": "Published",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "url": {
    "label": "Video URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Channel Scraper](https://apify.com/logiover/youtube-channel-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/youtube-channel-scraper) to learn more, explore other use cases, and run it yourself.