VideoStatsVideoStats
VideoStatsCertified

Get statistics for YouTube videos.

Retrieve detailed statistics for one or more YouTube videos including views, likes, and comments

yaml
type: "io.kestra.plugin.youtube.VideoStats"

Get statistics for multiple videos

yaml
id: get_video_stats
namespace: company.team

tasks:
  - id: authenticate
    type: io.kestra.plugin.youtube.auth.OAuth2
    clientId: "{{ secret('YOUTUBE_CLIENT_ID') }}"
    clientSecret: "{{ secret('YOUTUBE_CLIENT_SECRET') }}"
    refreshToken: "{{ secret('YOUTUBE_REFRESH_TOKEN') }}"

  - id: get_stats
    type: io.kestra.plugin.youtube.task.VideoStats
    accessToken: "{{ outputs.authenticate.accessToken }}"
    videoIds:
      - "dQw4w9WgXcQ"
      - "9bZkp7q19f0"
    includeSnippet: true
Properties

Access token

The OAuth2 access token for YouTube API authentication

SubTypestring

Video IDs

List of YouTube video IDs to retrieve statistics for

Defaultkestra-yt-plugin

Application name

Name of the application making the request

Defaultfalse

Include content details

Whether to include channels content details

Defaultfalse

Include snippet data

Whether to include video snippet data (title, description, thumbnail, etc.) in addition to statistics

Default5

Maximum results per video

Maximum number of items that should be returned in the result set – acceptable values are 1 to 50, inclusive.

Total comments across all videos

Total likes across all videos

Total number of videos processed

Total views across all videos

Video statistics data

Definitions
channelIdstring
channelTitlestring
commentCountinteger
definitionstring
descriptionstring
dimensionstring
dislikeCountinteger
durationstring
favoriteCountinteger
likeCountinteger
publishedAtstring
thumbnailUrlstring
titlestring
videoIdstring
viewCountinteger