API Reference

The YouTube Data API lets you incorporate functions normally executed on the YouTube website into your own website or application. The lists below identify the different types of resources that you can retrieve using the API. The API also supports methods to insert, update, or delete many of these resources.

This reference guide explains how to use the API to perform all of these operations. The guide is organized by resource type. A resource represents a type of item that comprises part of the YouTube experience, such as a video, a playlist, or a subscription. For each resource type, the guide lists one or more data representations, and resources are represented as JSON objects. The guide also lists one or more supported methods (LIST,POST,DELETE,etc.) for each resource type and explains how to use those methods in your application.

Calling the API

The following requirements apply to YouTube Data API requests:

  1. Every request must either specify an API key (with thekeyparameter) or provide an OAuth 2.0 token. Your API key is available in theDeveloper Console'sAPI Accesspane for your project.

  2. Youmustsend an authorization token for every insert, update, and delete request. You must also send an authorization token for any request that retrieves the authenticated user's private data.

    In addition, some API methods for retrieving resources may support parameters that require authorization or may contain additional metadata when requests are authorized. For example, a request to retrieve a user's uploaded videos may also contain private videos if the request is authorized by that specific user.

  3. The API supports the OAuth 2.0 authentication protocol. You can provide an OAuth 2.0 token in either of the following ways:

    • Use theaccess_tokenquery parameter like this:?access_token=oauth2-token
    • Use the HTTPAuthorizationheader like this:Authorization: Beareroauth2-token

    Complete instructions for implementing OAuth 2.0 authentication in your application can be found in theauthentication guide.

Resource types

Activities

Anactivityresource contains information about an action that a particular channel, or user, has taken on YouTube. The actions reported in activity feeds include rating a video, sharing a video, marking a video as a favorite, uploading a video, and so forth. Eachactivityresource identifies the type of action, the channel associated with the action, and the resource(s) associated with the action, such as the video that was rated or uploaded.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /activities Returns a list of channel activity events that match the request criteria. For example, you can retrieve events associated with a particular channel or with the user's own channel.
insert POST /activities Note:This method has been deprecated and is no longer supported.

Captions

Acaptionresource represents a YouTube caption track. A caption track is associated with exactly one YouTube video.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
delete DELETE /captions Deletes the specified caption track.
download GET /captions/id Downloads a caption track. The caption track is returned in its original format unless the request specifies a value for thetfmtparameter and in its original language unless the request specifies a value for thetlangparameter.
insert POST /captions Uploads a caption track.
list GET /captions Returns a list of caption tracks that are associated with a specified video. Note that the API response does not contain the actual captions and that thecaptions.downloadmethod provides the ability to retrieve a caption track.
update PUT /captions Updates a caption track. When updating a caption track, you can change the track'sdraft status,upload a new caption file for the track, or both.

ChannelBanners

AchannelBannerresource contains the URL that you would use to set a newly uploaded image as the banner image for a channel.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
insert POST /channelBanners/insert Uploads a channel banner image to YouTube. This method represents the first two steps in a three-step process to update the banner image for a channel:

  1. Call thechannelBanners.insertmethod to upload the binary image data to YouTube. The image must have a 16:9 aspect ratio and be at least 2048x1152 pixels. We recommend uploading a 2560px by 1440px image.
  2. Extract theurlproperty's value from the response that the API returns for step 1.
  3. Call thechannels.updatemethod to update the channel's branding settings. Set thebrandingSettings.image.bannerExternalUrlproperty's value to the URL obtained in step 2.

ChannelSections

AchannelSectionresource contains information about a set of videos that a channel has chosen to feature. For example, a section could feature a channel's latest uploads, most popular uploads, or videos from one or more playlists.

Note that a channel's sections are only visible if the channel displays content in a browse view (rather than a feed view). To enable a channel to display content in a browse view, set thebrandingSettings.channel.showBrowseViewproperty totruefor the specified channel.

A channel can create a maximum of 10 shelves.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
delete DELETE /channelSections Deletes a channel section.
insert POST /channelSections Adds a channel section to the authenticated user's channel. A channel can create a maximum of 10 shelves.
list GET /channelSections Returns a list ofchannelSectionresources that match the API request criteria.
update PUT /channelSections Updates a channel section.

Channels

Achannelresource contains information about a YouTube channel.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /channels Returns a collection of zero or morechannelresources that match the request criteria.
update PUT /channels Updates a channel's metadata. Note that this method currently only supports updates to thechannelresource'sbrandingSettingsandinvideoPromotionobjects and their child properties.

CommentThreads

AcommentThreadresource contains information about a YouTube comment thread, which comprises a top-level comment and replies, if any exist, to that comment. AcommentThreadresource can represent comments about either a video or a channel.

Both the top-level comment and the replies are actuallycommentresources nested inside thecommentThreadresource. ThecommentThreadresource does not necessarily contain all replies to a comment, and you need to use thecomments.listmethod if you want to retrieve all replies for a particular comment. Also note that some comments do not have replies.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /commentThreads Returns a list of comment threads that match the API request parameters.
insert POST /commentThreads Creates a new top-level comment. To add a reply to an existing comment, use thecomments.insertmethod instead.

Comments

Acommentresource contains information about a single YouTube comment. Acommentresource can represent a comment about either a video or a channel. In addition, the comment could be a top-level comment or a reply to a top-level comment.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /comments Returns a list of comments that match the API request parameters.
setModerationStatus POST /comments/setModerationStatus Sets the moderation status of one or more comments. The API request must be authorized by the owner of the channel or video associated with the comments.
insert POST /comments Creates a reply to an existing comment.Note:To create a top-level comment, use thecommentThreads.insertmethod.
markAsSpam POST /comments/markAsSpam Note:This method has been deprecated and is no longer supported.
delete DELETE /comments Deletes a comment.
update PUT /comments Modifies a comment.

GuideCategories

AguideCategoryresource identifies a category that YouTube algorithmically assigns based on a channel's content or other indicators, such as the channel's popularity. The list is similar tovideo categories,with the difference being that a video's uploader can assign a video category but only YouTube can assign a channel category.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /guideCategories Returns a list of categories that can be associated with YouTube channels.

I18nLanguages

Ani18nLanguageresource identifies an application language that the YouTube website supports. The application language can also be referred to as a UI language. For the YouTube website, an application language could be automatically selected based on Google Account settings, browser language, or IP location. A user could also manually select the desired UI language from the YouTube site footer.

Eachi18nLanguageresource identifies a language code and a name. The language code can be used as the value of thehlparameter when calling API methods likevideoCategories.listandguideCategories.list.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /i18nLanguages Returns a list of application languages that the YouTube website supports.

I18nRegions

Ani18nRegionresource identifies a geographic area that a YouTube user can select as the preferred content region. The content region can also be referred to as a content locale. For the YouTube website, a content region could be automatically selected based on heuristics like the YouTube domain or the user's IP location. A user could also manually select the desired content region from the YouTube site footer.

Eachi18nRegionresource identifies a region code and a name. The region code can be used as the value of theregionCodeparameter when calling API methods likesearch.list,videos.list,activities.list,andvideoCategories.list.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /i18nRegions Returns a list of content regions that the YouTube website supports.

Members

Amemberresource represents a channel member for a YouTube channel. A member provides recurring monetary support to a creator and receives special benefits. For example, members are able to chat when the creator turns on members-only mode for a chat.

For more information about this resource, see its resource representationand list of properties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /members Lists members (formerly known as "sponsors" ) for a channel. The API request must be authorized by the channel owner.

MembershipsLevels

AmembershipsLevelresource identifies a pricing level for the creator that authorized the API request.

For more information about this resource, see its resource representationand list of properties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /membershipsLevels Returns a collection of zero or moremembershipsLevel resources owned by the channel that authorized the API request. Levels are returned in implicit display order.

PlaylistItems

AplaylistItemresource identifies another resource, such as a video, that is included in a playlist. In addition, theplaylistItemresource contains details about the included resource that pertain specifically to how that resource is used in that playlist.

YouTube also uses a playlist to identify a channel's list of uploaded videos, with each playlistItemin that list representing one uploaded video. You can retrieve the playlist ID for that list from thechannel resource for a given channel. You can then use the playlistItems.listmethod to the list.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
delete DELETE /playlistItems Deletes a playlist item.
insert POST /playlistItems Adds a resource to a playlist.
list GET /playlistItems Returns a collection of playlist items that match the API request parameters. You can retrieve all of the playlist items in a specified playlist or retrieve one or more playlist items by their unique IDs.
update PUT /playlistItems Modifies a playlist item. For example, you could update the item's position in the playlist.

Playlists

Aplaylistresource represents a YouTube playlist. A playlist is a collection of videos that can be viewed sequentially and shared with other users. A playlist can contain up to 200 videos, and YouTube does not limit the number of playlists that each user creates. By default, playlists are publicly visible to other users, but playlists can be public or private.

YouTube also uses playlists to identify special collections of videos for a channel, such as:

  • uploaded videos
  • positively rated (liked) videos
  • watch history
  • watch later
To be more specific, these lists are associated with a channel, which is a collection of a person, group, or company's videos, playlists, and other YouTube information. You can retrieve the playlist IDs for each of these lists from thechannel resourcefor a given channel.

You can then use theplaylistItems.listmethod to retrieve any of those lists. You can also add or remove items from those lists by calling theplaylistItems.insertandplaylistItems.deletemethods.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
delete DELETE /playlists Deletes a playlist.
list GET /playlists Returns a collection of playlists that match the API request parameters. For example, you can retrieve all playlists that the authenticated user owns, or you can retrieve one or more playlists by their unique IDs.
insert POST /playlists Creates a playlist.
update PUT /playlists Modifies a playlist. For example, you could change a playlist's title, description, or privacy status.

A search result contains information about a YouTube video, channel, or playlist that matches the search parameters specified in an API request. While a search result points to a uniquely identifiable resource, like a video, it does not have its own persistent data.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /search Returns a collection of search results that match the query parameters specified in the API request. By default, a search result set identifies matchingvideo,channel,andplaylistresources, but you can also configure queries to only retrieve a specific type of resource.

Subscriptions

Asubscriptionresource contains information about a YouTube user subscription. A subscription notifies a user when new videos are added to a channel or when another user takes one of several actions on YouTube, such as uploading a video, rating a video, or commenting on a video.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
delete DELETE /subscriptions Deletes a subscription.
insert POST /subscriptions Adds a subscription for the authenticated user's channel.
list GET /subscriptions Returns subscription resources that match the API request criteria.

Thumbnails

Athumbnailresource identifies different thumbnail image sizes associated with a resource. Please note the following characteristics of thumbnail images:

  • A resource'ssnippet.thumbnailsproperty is an object that identifies the thumbnail images available for that resource.
  • Athumbnailresource contains a series of objects. The name of each object (default,medium,high,etc.) refers to the thumbnail image size.
  • Different types of resources may support different thumbnail image sizes.
  • Different types of resources may define different sizes for thumbnail images with the same name. For example, thedefaultthumbnail image for avideoresource is typically 120px by 90px, and thedefaultthumbnail image for achannelresource is typically 88px by 88px.
  • Resources of the same type may still have different thumbnail image sizes for certain images depending on the resolution of the original image or content uploaded to YouTube. For example, an HD video may support higher resolution thumbnails than non-HD videos.
  • Each object that contains information about a thumbnail image size has awidthproperty and aheightproperty. However, the width and height properties may not be returned for that image.
  • If an uploaded thumbnail image does not match the required dimensions, the image is resized to match the correct size without changing its aspect ratio. The image is not cropped, but may include black bars so that the size is correct.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
set POST /thumbnails/set Uploads a custom video thumbnail to YouTube and sets it for a video.

VideoAbuseReportReasons

AvideoAbuseReportReasonresource contains information about a reason that a video would be flagged for containing abusive content. When your application calls thevideos.reportAbusemethod to report an abusive video, the request uses the information from avideoAbuseReportReasonresource to identify the reason that the video is being reported.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /videoAbuseReportReasons Retrieve a list of reasons that can be used to report abusive videos.

VideoCategories

AvideoCategoryresource identifies a category that has been or could be associated with uploaded videos.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
list GET /videoCategories Returns a list of categories that can be associated with YouTube videos.

Videos

Avideoresource represents a YouTube video.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
insert POST /videos Uploads a video to YouTube and optionally sets the video's metadata.
list GET /videos Returns a list of videos that match the API request parameters.
delete DELETE /videos Deletes a YouTube video.
update PUT /videos Updates a video's metadata.
rate POST /videos/rate Add a like or dislike rating to a video or remove a rating from a video.
getRating GET /videos/getRating Retrieves the ratings that the authorized user gave to a list of specified videos.
reportAbuse POST /videos/reportAbuse Report a video for containing abusive content.

Watermarks

Awatermarkresource identifies an image that displays during playbacks of a specified channel's videos. You can also specify a target channel to which the image will link as well as timing details that determine when the watermark appears during video playbacks and the length of time it is visible.

For more information about this resource, see itsresource representationand list ofproperties.

Method HTTP request Description
URIs relative tohttps:// googleapis /youtube/v3
set POST /watermarks/set Uploads a watermark image to YouTube and sets it for a channel.
unset POST /watermarks/unset Deletes a channel's watermark image.