| GET | /videos/video_id | retrieve information about a video
|
| POST | /videos | add a new video
|
| GET | /threads/thread_id | get a list of videos in a particular thread
|
| GET | /users/username/followers | get people who follow username
|
| GET | /users/username/followers/videos | get most recent N videos for the people who follow username
|
| GET | /groups | get a list of groups
|
| GET | /groups/group_id | get information about group_id
|
| GET | /groups/group_id/videos | get videos in group_id
|
| GET | /groups/group_id/followers | get people subscribed to group_id
|
| POST | /groups | add a new group
|
| POST | /groups/group_id/followers | add a new subscriber to group_id
|
| DELETE | /groups/group_id/followers/username | delete a subscriber from group_id
|
| POST | /users | add a new user
|
| DELETE | /users/username | remove a user
|