/tags
This endpoint enables you to search for video tags in a project and see how many videos are tagged with them. If you do not define any query parameters, the endpoint lists all video tags and the numbers of times they are used in a project.
value
string
Use this parameter to search for specific video tags. The API filters results even on partial values, and ignores accents, uppercase, and lowercase.
sortBy
string
Use this parameter to choose which field the API will use to sort the response data. The default is value
.
These are the available fields to sort by:
value
: Sorts the results based on tag values in alphabetic order.videoCount
: Sorts the results based on the number of times a video tag is used.sortOrder
string
Use this parameter to sort results. asc
is ascending and sorts from A to Z. desc
is descending and sorts from Z to A.
currentPage
int
Choose the number of search results to return per page. Minimum value: 1
pageSize
int
Results per page. Allowed values 1-100, default is 25.
Success
{
"data": [
{
"value": "maths",
"videoCount": "33"
},
{
"value": "tutorials",
"videoCount": "10"
}
],
"pagination": {
"currentPage": 1,
"pageSize": 25,
"pagesTotal": 1,
"itemsTotal": 2,
"currentPageItems": 2,
"links": [
{
"rel": "self",
"uri": "/tags?currentPage=1&pageSize=25"
},
{
"rel": "first",
"uri": "/tags?currentPage=1&pageSize=25"
},
{
"rel": "last",
"uri": "/tags?currentPage=1&pageSize=25"
}
]
}
}
Was this page helpful?