GuideCategories
Stay organized with collections
Save and categorize content based on your preferences.
Note: This is a deprecation announcement.
The guideCategories
resource
and the guideCategories.list
method have both been deprecated as of September 9, 2020.
A guideCategory
resource 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 to video categories, with the difference being that a video's uploader can assign a video category but only YouTube can assign a channel category.
Methods
The API supports the following methods for guideCategories
resources:
- list
- Returns a list of categories that can be associated with YouTube channels.
Try it now.
Resource representation
The JSON structure below shows the format of a guideCategories
resource:
{
"kind": "youtube#guideCategory",
"etag": etag,
"id": string,
"snippet": {
"channelId": "UCBR8-60-B28hp2BmDPdntcQ",
"title": string
}
}
Properties
The following table defines the properties that appear in this resource:
Properties |
kind |
string
Identifies the API resource's type. The value will be youtube#guideCategory . |
etag |
etag
The Etag of this resource. |
id |
string
The ID that YouTube uses to uniquely identify the guide category. |
snippet |
object
The snippet object contains basic details about the category, such as its title. |
snippet.channelId |
string
The ID that YouTube uses to uniquely identify the channel publishing the guide category. |
snippet.title |
string
The category's title. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-11-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-11-04 UTC."],[[["The `guideCategories` resource and `guideCategories.list` method were deprecated on September 9, 2020."],["A guide category is a classification assigned by YouTube to a channel based on its content or other indicators."],["The `guideCategories.list` method provided a list of categories applicable to YouTube channels."],["The `guideCategory` resource contains an ID, a snippet with basic details like a title, and other metadata such as the category's etag."],["Unlike video categories that are assigned by uploaders, channel categories are exclusively assigned by YouTube."]]],["The `guideCategories` resource and its `list` method were deprecated on September 9, 2020. A `guideCategory` represents a YouTube-assigned category for a channel. The `list` method previously returned categories associated with YouTube channels. The resource's JSON structure included `kind`, `etag`, `id`, and a `snippet` object with `channelId` and `title` properties. Only YouTube could assign these categories, unlike video categories, which could be assigned by the uploader.\n"]]