DarkPh03n1X
DarkPh03n1X

Reputation: 680

Is their a way to list the copyright claims of your video on Youtube using Youtube's API?

When you upload a video to YouTube you may get a Includes copyrighted content flag in the video manager. Then when you go and check the video you see a message under the "copyright" section: You have x copyright claims on your video. and below this is a Details section displaying interesting information like: "CONTENT","CLAIMANT","POLICY" and it shows the time region where this claimed content is located in the video. What i would like to know is if Youtube's or Google's API can give us this same information?

Upvotes: 1

Views: 1066

Answers (1)

Teyam
Teyam

Reputation: 8122

Try using Videos: list.

Send HTTP request using this format:

GET https://www.googleapis.com/youtube/v3/videos

If successful, this method returns a response body with this sample video resource:

"contentDetails": {
    "licensedContent": boolean,
    "regionRestriction": {
      "allowed": [
        string
      ],
      "blocked": [
        string
      ]
    },
"status": {
    "privacyStatus": string,
    "publishAt": datetime,
    "license": string,
    "publicStatsViewable": boolean
  }

Upvotes: 0

Related Questions