Rate Video
youtube_rate_videoRate a YouTube video by liking, disliking, or removing your existing rating. Specify the video ID and desired rating to apply.
Instructions
Like, dislike, or remove your rating from a video.
Calls videos.rate. The rating applies to the authenticated user's account.
Args
videoId (string, required): video to rate
rating ("like"|"dislike"|"none", required): the rating to apply
Returns Short confirmation of the rating applied.
Examples
Like:
{ "videoId": "dQw4w9WgXcQ", "rating": "like" }Remove rating:
{ "videoId": "dQw4w9WgXcQ", "rating": "none" }
Errors
400: invalid rating value
403: scope missing or video not accessible
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| videoId | Yes | ID of the video to rate. | |
| rating | Yes | Rating to apply: "like", "dislike", or "none" (removes existing rating). |