I'm trying to build website (for my own) that show me 5 latest videos from 20 channels in youtube. So I'm using for each specific channel in this following request:
https://www.googleapis.com/youtube/v3/search?key={API_KEY}&channelId={CHANNEL_ID}&part=snippet,id&order=date&maxResults=5
Each requst cost 100 unit, and for 20 channel is 2000 units, and I have just 10,000 units/day because the quota of youtube API. And because I trying to figure out how it works, and sometimes there are bugs too, I useing the same request many times, and my quota runs out fast.
So my quastion is: is there any way to replace the SEARCH
request in, CHANNEL
/VIDEOS
(list) request to reduce the cost of the request (this cost is just 1 unit).
Or maybe to get in one request all the 5 videos from all the 20 channels?
Sorry for my English if there are any mistakes Thanks in advance from everyone.