This contains all the methods to get the Content information like Content List, Content Details, Episode Details etc
Endpoint | Description |
---|---|
GET rest/getContentList/ | Get the list of data of a specific content type. |
GET rest/getContentDetails | Get the details of a particular content based on its permalink. |
GET rest/episodeDetails | Get the list of all the episodes under the multipart content. |
Get the list of data of a specific content types based on content type permalink. List all the data with pagination for a specific content type.
Name | Required? | Type | Description |
---|---|---|---|
authToken | Optional | String | Valid authToken |
Optional | String | A valid Email to be checked |
{ "status": 200, "msg": "OK", "movieList": [ { "0": "0", "movie_id": "95", "movie_stream_id": "128", "permalink": "jannat-2", "name": "Jannat-2", "content_type_id": "94", "full_movie": "7747_insensato_coracao___trailer___ingles.mp4", "story": "test 1233333", "genre": "[\"Action\"]", "release_date": "2014-09-03", "content_types_id": "1", "display_name": "Films", "content_permalink": "films", "poster_url": "http:\/\/d2gx0xinochgze.cloudfront.net\/public\/system\/posters\/110\/thumb\/Eesha Koppikhar.jpg" } ], "orderby": "", "item_count": "25", "limit": "1" }
Details of the content based on the permalink of the content. It will return all details including comments associated with it. It also gives the cast & crew details associated with the content.
Name | Required? | Type | Description |
---|---|---|---|
authToken | Optional | String | Valid authToken |
permalink | Optional | String | Content Permalink |
{ "code": 200, "msg": "OK", "movie": { "id": "95", "name": "Jannat-2", "content_types_id": "1", "movie_stream_id": "128", "full_movie": "7747_insensato_coracao___trailer___ingles.mp4", "video_resolution": "", "permalink": "jannat-2", "content_type_id": "94", "genre": "[\"Action\"]", "release_date": "2014-09-03", "censor_rating": "[\"UA\"]", "display_name": "Films", "actor": "Aamir Khan", "director": "", "cast_detail": [ { "celeb_image": "http:\/\/d2gx0xinochgze.cloudfront.net\/public\/system\/posters\/47\/medium\/Aamir+Khan.jpg", "celeb_name": "Aamir Khan", "celeb_id": "7", "permalink": "aamir-khan", "cast_type": "actor" } ], "trailerUrl": "http:\/\/d2gx0xinochgze.cloudfront.net\/uploads\/trailers\/25\/h264_mp3_mkvmerge_.mp4", "movieUrl": "http:\/\/bucketname.s3.amazonaws.com\/uploads\/movie_stream\/full_movie\/128\/7747_insensato_coracao___trailer___ingles.mp4", "resolution": { "144": "http:\/\/bucketname.s3.amazonaws.com\/uploads\/movie_stream\/full_movie\/128\/7747_insensato_coracao___trailer___ingles.mp4" }, "banner": "http:\/\/d2gx0xinochgze.cloudfront.net\/public\/system\/posters\/111\/original\/Banner-Large1.jpg", "poster": "http:\/\/d2gx0xinochgze.cloudfront.net\/public\/system\/posters\/110\/thumb\/Eesha+Koppikhar.jpg" }, "comments": [], "epDetails": null }
Fetch all the episodes under multipart content based on its permalink. It will fetch episode details along with pagination. Comments under that content will be fetched along with this.
Name | Required? | Type | Description |
---|---|---|---|
authToken | Optional | String | Valid authToken |
permalink | Optional | String | Content Permalink |
offset | Yes | Integer | Pagination page number. |
series_number | Yes | Integer | Series Number |
{ "code": 200, "msg": "OK", "name": "Comedy Classes", "permalink": "comedy-classes", "item_count": "19", "limit": "1", "offset": 0, "comments": [], "episode": [ { "0": "0", "id": "32", "full_movie": "Piya-Ke-Bazaar-Mein---Humshakals(Mobi44.com).mp4", "episode_number": "1", "video_resolution": "", "episode_title": "First Episode", "series_number": "1", "episode_date": null, "episode_story": "Bharti had a impressible performance in this episode.....Bharti had a impressible performance in this episode.....Bharti had a impressible performance in this episode.....", "video_url": "http:\/\/bucketname.s3.amazonaws.com\/uploads\/movie_stream\/full_movie\/32\/Piya-Ke-Bazaar-Mein---Humshakals(Mobi44.com).mp4", "poster_url": "http:\/\/d2gx0xinochgze.cloudfront.net\/public\/system\/posters\/19\/episode\/bg_poster.jpg", "resolution": { "144": "http:\/\/bucketname.s3.amazonaws.com\/uploads\/movie_stream\/full_movie\/32\/Piya-Ke-Bazaar-Mein---Humshakals(Mobi44.com).mp4" } } ] }