# Video Info Returns a YouTube video or live information. Endpoint: GET /raw/youtube/video-info Security: accessToken ## Query parameters: - `url` (string, required) YouTube video page url i.e. https://www.youtube.com/watch?v={videoId} ## Response 200 fields (application/json): - `video_info` (object, required) - `video_info.video_id` (string, required) - `video_info.channel_id` (string, required) - `video_info.title` (string, required) - `video_info.published_at` (string, required) - `video_info.duration` (any, required) - `video_info.views` (number) - `video_info.likes` (number) - `video_info.dislikes` (number) - `video_info.comments` (number, required) - `video_info.genre` (string, required) - `video_info.thumbnail` (string, required) - `video_info.description` (string, required) - `video_info.keywords` (array, required) - `video_info.subtitles` (array) - `video_info.subtitles.vss_id` (string, required) - `video_info.subtitles.language_code` (string, required) - `video_info.subtitles.name` (string, required) - `video_info.subtitles.fetch_url` (string, required) - `video_info.comments_tabs` (array) - `video_info.comments_tabs.type` (string, required) - `video_info.comments_tabs.cursor` (string, required) - `video_info.includes_paid_promotion` (boolean) - `success` (boolean, required)