Go Live

Get a List of Lives

To retrieve a list of Lives based on specific criteria, you can send a GET request to the following API:

GET /bv/cms/v1/lives

The available query parameters are:

Filter Type Description
current_page integer The current page number of the pagination. The default value is 1.
filter.name string The value of filtering Lives by name. The API returns only Lives that match the specified name.
items_per_page integer The number of items to return per page. The default value is 20.

Here's an example of querying with the name "LIVE_NAME" with 10 items per page:

/bv/cms/v1/lives?filter.name=LIVE_NAME&items_per_page=10

Updated