# US YouTube Trending Videos Scraper

**Use case:** 

Collect ranked YouTube Trending videos for the US with titles, channels, URLs, thumbnails, views, and publish metadata.

## Input

```json
{
  "region": "US",
  "category": "all",
  "maxItems": 50,
  "language": "en",
  "fallbackToSearch": true
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "url": {
    "label": "Video URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "publishedTimeText": {
    "label": "Published",
    "format": "text"
  },
  "viewCountText": {
    "label": "Views text",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "durationText": {
    "label": "Duration",
    "format": "text"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "badges": {
    "label": "Badges",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "sourceType": {
    "label": "Source type",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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