Get all your tags

The /tags endpoint of our REST API offers a user-friendly and powerful way to access the list of tags associated with our video products. This resource is essential for developers to explore and understand the different categories, themes, and topics covered in our video library.

curl -X 'GET' 
  '<<SBX_SERVER>>/tags?offset=1&limit=3' 
  -H 'accept: application/json' 
  -H 'x-api-key: <<SBX_DEMO_KEY>>'
{
  "tags": [  
    "Science Fiction","Cooking",
      
    // ... Other tags ...  
  ]
} 

The "/tags" endpoint of our REST API is a valuable tool for exploring and accessing the list of tags associated with our videos. You can obtain a complete list of tags or filter tags by category, making it easy to navigate and discover content. Whether you want to build an advanced search function, a tag taxonomy, or simply explore our video catalog, this API provides you with the necessary means to enhance the user experience.

Feel free to further explore the features of this API to customize your integration and provide an exceptional user experience!