Get All Channels and Groups in a Category
Learn how to get all the channels and groups in a category using Vimeo API.
In this lesson, we'll see how we can get all the channels and groups in a category. We'll use the following two endpoints of categories:
We’ll use the
{base_url}/categories/{categoryName}/channelsendpoint to get all channels in a category.We’ll use the
{base_url}/categories/{categoryName}/groupsendpoint to get all groups in a category.
Get all channels in a category
We’ll use the categories/{categoryName}/channels endpoint to get all the channels available in a category defined by the path parameter {categoryName}.
Request parameters
This endpoint also utilizes an HTTP GET request, so ...
Ask