Is it possible to get the video title using the video ID with API v3 without the API key? I could not find any information or example of getting the title i
Yes You Can Without Any API Just Requests an re Modules
import requests,re
video_url = "https://www.youtube.com/watch?v=2i2khp_npdE"
response = requests.get(video_url).text
title = re.findall(r'"title":"[^>]*",',response)[0].split(',')[0][9:-1]
print("\n[+] Video Title: {}".format(title))
[+] Video Title: Alan Walker - Sing Me To Sleep