user1686758
user1686758

Reputation: 759

Youtube Related Videos using Youtube V3 API

I need the API URL for Youtube Related Videos using the Youtube V3 API. But I couldn't find the direct API call, like it is in Version 2. Did I miss something?

https://developers.google.com/youtube/v3/docs/

Upvotes: 43

Views: 23508

Answers (2)

shib
shib

Reputation: 24

Just an Update to this answer -> Youtube don't provide this api from 7th AUG 2023.

Upvotes: 1

Ibrahim Ulukaya
Ibrahim Ulukaya

Reputation: 12877

Are you trying to find videos related to a video?

You can use search->list call for this with specifying the "relatedToVideoId"

And for anyone looking for a coded example:

GET https://www.googleapis.com/youtube/v3/search?part=snippet&relatedToVideoId=5rOiW_xY-kc&type=video&key={YOUR_API_KEY}

Upvotes: 72

Related Questions