# YouTube video country availability extractor

**Use case:** 

Extract country availability for public YouTube videos with video title, channel, allowed countries, and blocked countries.

## Input

```json
{
  "videoUrlsOrIds": [
    "dQw4w9WgXcQ",
    "https://youtu.be/9bZkp7q19f0"
  ],
  "countries": [
    "US",
    "KR",
    "JP",
    "DE",
    "BR"
  ],
  "includeAllowedCountries": false,
  "includeBlockedCountries": false,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "allowedCount": {
    "label": "Allowed countries",
    "format": "number"
  },
  "blockedCount": {
    "label": "Blocked countries",
    "format": "number"
  },
  "targetCountryAvailability": {
    "label": "Target country availability",
    "format": "text"
  },
  "allowedCountries": {
    "label": "Allowed country codes",
    "format": "text"
  },
  "blockedCountries": {
    "label": "Blocked country codes",
    "format": "text"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Region Restriction Checker](https://apify.com/automation-lab/youtube-region-restriction-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/youtube-region-restriction-checker) to learn more, explore other use cases, and run it yourself.