# Enrich Youtube Video Urls For Notion

**Use case:** 

Use this ready-to-run task to enrich Youtube Video Urls For Notion and export public YouTube video metadata for enrichment, normalization, archive, or...

## Input

```json
{
  "videoUrls": [
    {
      "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    }
  ],
  "videoIds": [],
  "maxConcurrency": 1,
  "includeRawMetadata": false
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "link"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "durationSeconds": {
    "label": "Duration (sec)",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "isLiveContent": {
    "label": "Live",
    "format": "boolean"
  },
  "isShort": {
    "label": "Shorts",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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