Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The 999 entries appears to be a limit by design. See the <a href="https://developers.google.com/youtube/2.0/developers_guide_protocol_video_feeds" rel="nofollow noreferrer">YouTube API v2.0 – Video Feed Types</a>:</p> <blockquote> <p>"The API returns a videos feed in response to a request to search for videos. A videos feed contains a maximum of 999 entries."</p> </blockquote> <p>It looks like the same limit apply to the web site as well.</p> <p>You could try to add <a href="https://developers.google.com/youtube/2.0/developers_guide_protocol_api_query_parameters" rel="nofollow noreferrer">custom query parameters for the YouTube Data API</a> to limit the amount of results you get, like for example:</p> <ul> <li>caption=true|false</li> <li>duration=short|medium|long</li> <li>format=1|5|6</li> <li>time=today|this_week|this_month (instead of the default: all_time)</li> </ul> <p>This way you can use a combination of queries to get more of the results that you're interested in.</p> <p><strong>Edit</strong>: While searching how to use the duration, I came across <a href="https://stackoverflow.com/questions/10482203/youtube-gdata-api-query-for-videos-with-a-specific-duration?rq=1">YouTube GData API - Query for videos with a specific duration</a> on Stack Overflow, which refers to <a href="https://developers.google.com/youtube/2.0/developers_guide_protocol_partial" rel="nofollow noreferrer">YouTube API v2.0 – Retrieving a Partial Response</a>. You can for example specify a maximum view count (which might be useful to get the Long Tail) using this experimental "Retrieving a Partial Response API" and that's only one of the many things you can do with it.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload