Reputation: 85
Is there any way to get all the videos from Vimeo that don't contain a tag?
E.g. /videos?tag_not=excluded
or something similar.
The query parameter just called query is a string, and it appears to search free text in the title and/or description.
There is documentation for getting videos with a specific tag, but I want the opposite.
Upvotes: 1
Views: 76
Reputation: 32
Not available, this is pretty common with most API's. You can however from a programmatic approach loop through the responses and just return results that have no tags as a workaround.
Upvotes: 1