v1

latestOpenAPI 3.0.0AGPLv3.02026-07-14186117194.3 KB
Video Channels

List followers of a video channel

get/api/v1/video-channels/{channelHandle}/followers

Path parameters

channelHandlestring required
Example:my_username | my_username@example.com

The video channel handle

Query parameters

startinteger

Offset used to paginate results

countinteger

Number of items to return

sort'createdAt'

Sort followers by criteria

searchstring

Plain text search, applied to various parts of the model depending on endpoint

Response

successful operation

totalinteger

Example response

{
  "data": [
    {
      "follower": {
        "id": 42,
        "name": "chocobozzz"
      },
      "following": {
        "id": 42,
        "name": "chocobozzz"
      },
      "id": 42
    }
  ],
  "total": 1
}