/video-playlist

API for Creating, Reading and Deleting videos and playlists. Built on NodeJS and MongoDB.

Primary LanguageJavaScript

Live Version

https://video-playlist-rahuls360.herokuapp.com

Documentation

Get All Videos

/videos [GET]

Get Single Video information

/video/:id [GET]

Create Video

/video/new [POST]

Pass the following Parameters

  • title
  • thumbnail
  • url
  • duration

Delete a video

/video/:id [DELETE]

 

Get All Playlists

/playlists [GET]

Get Single Playlist information

/playlist/:id [GET]

Create Playlist

/playlist/new [POST]

Pass the following Parameters

  • title
  • videos [array]
  • URL

Delete a Playlist

/playlist/:id [DELETE]

 

Shuffle Playlist Videos

/shuffle/:id [GET]