YouTube Comment Threads
We all know what a video is and we don't think we need an explanation.
A comment is associated with a video or a channel.
Several methods are allowed, but we will look into the list in this session.
List request returns a list of comment threads that can be associated with a Youtube video.
It has a quota cost of 1 per request.
Documentation: https://developers.google.com/youtube/v3/docs/comments
Videos request allows only a list method, which we will look into in this session.
List request returns a list of categories that can be associated with YouTube videos.
It has a quota cost of 1 per request.
API Documentation: https://developers.google.com/youtube/v3/docs/videoCategories
Sample Request and Response
Request
- HTTP Request: GET https://www.googleapis.com/youtube/v3/videoCategories
- Required Parameter to specify properties to include in the: part = snippet
- Required one of these parameters:
regionCode
,id
Response
- Check the video of this article to see what the response looks like.
POSTMAN Collection
The POSTMAN collection can be downloaded from the below GitHub repository.
Overall
We understood the YouTube Data API videos request and have successfully executed a list request.