# Scrape public YouTube video details

**Use case:** 

Extract one public YouTube video with title, channel, dates, duration, views, likes, comments, and thumbnail.

## Input

```json
{
  "channelUrls": [],
  "includeShorts": false,
  "searchQueries": [],
  "playlistUrls": [],
  "videoUrls": [
    "https://www.youtube.com/watch?v=jNQXAC9IVRw"
  ],
  "resultsPerInput": 1,
  "maxConcurrency": 1,
  "maxRequestRetries": 2,
  "requestTimeoutSecs": 30
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "publishedTimeText": {
    "label": "Published text",
    "format": "text"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "isShort": {
    "label": "Short",
    "format": "boolean"
  },
  "url": {
    "label": "Video URL",
    "format": "link"
  },
  "sourceType": {
    "label": "Source",
    "format": "text"
  },
  "sourceInput": {
    "label": "Input",
    "format": "text"
  }
}
```

## About this Actor

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