Quantcast
Channel: Active questions tagged youtube-api - Stack Overflow
Viewing all articles
Browse latest Browse all 3831

Finding a youtube playlist by name (YouTube API)

$
0
0

Is there a way to look up a playlist by name and not by URL with YouTube API?

I've been using "search", "playlistItems" and "videos"."search" only return videos and the other 2 do not have any parameters for name.

This is what my "search" look like:

async function getSearchDetails(value: string, pageToken: string) {  const { data } = await axios.get("https://www.googleapis.com/youtube/v3/search", {    params: {      part: "snippet, id",      q: value,      maxResults: 10,      pageToken: pageToken,      key: YOUTUBE_API_KEY,    },  });  return data;}

Viewing all articles
Browse latest Browse all 3831

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>