Recent Movies and Tvseries

Fire this api to get list of recent movies and tvseries.

List of recent movies

api/RecentMovies

GET https://yourdomain.com/api/RecentMovies

This end point allows you to get list of recent movies.

Query Parameters

Name
Type
Description

secret

string

Client secret key will goes here which you get from admin panel.

Headers

Name
Type
Description

Authorization*

string

Bearer { bearer_token without bracket }

Accept*

string

application/json

{
    "recent": [
    {
        "id": 26,
        "tmdb_id": 637312,
        "title": "Dinner with Leatherface",
        "slug": "dinner-with-leatherface",
        "keyword": "",
        "description": "",
        "duration": "85",
        "thumbnail": "tmdb_okgrTxL6TLsC5rpzRD7S5MQCGgx.jpg",
        "poster": null,
        "tmdb": "Y",
        "fetch_by": "title",
        "director_id": "76",
        "actor_id": "168,169,170,171,172",
        "genre_id": "15,8",
        "trailer_url": null,
        "detail": "A look at poet, author, filmmaker, actor and horror icon, Gunnar Hansen, the original Leatherface in the first Texas Chainsaw Massacre, from friends, colleagues, filmmakers, actors and anyone who knew one of the nicest people affiliated with the horror genre.",
        "rating": 0,
        "maturity_rating": "all age",
        "subtitle": 0,
        "publish_year": 2021,
        "released": "2021-09-01",
        "upload_video": null,
        "featured": 0,
        "series": 0,
        "a_language": null,
        "audio_files": null,
        "type": "M",
        "live": 0,
        "livetvicon": null,
        "status": 1,
        "is_protect": 0,
        "password": null,
        "created_by": 1,
        "created_at": "2021-08-17T13:38:43.000000Z",
        "updated_at": "2021-08-17T13:38:43.000000Z",
        "is_upcoming": 1,
        "is_custom_label": 0,
        "label_id": null,
        "upcoming_date": "2021-09-01",
        "user-rating": 0
    },
   
]
}

List of recent tvseries

api/RecentTvSeries

GET https://yourdomain.com/api/RecentTvSeries

This end points allow to you get all information about recent tvseries.

Query Parameters

Name
Type
Description

secret

string

Client secret key will goes here which you get from admin panel.

Headers

Name
Type
Description

Authorization*

string

Bearer { bearer_token without bracket }

Accept*

string

application/json

{
   "tvseries": [
  
    {
        "id": 10,
        "keyword": "",
        "description": "",
        "title": "The Queen of Flow",
        "tmdb_id": "80240",
        "tmdb": "Y",
        "fetch_by": "title",
        "thumbnail": "tmdb_fuVuDYrs8sxvEolnYr0wCSvtyTi.jpg",
        "poster": "poster_pnyT1foDmmXTsho2DfxN2ePI8ix.jpg",
        "genre_id": "11",
        "detail": "After spending seventeen years in prison unfairly, a talented songwriter seeks revenge on the men who sank her and killed her family.",
        "rating": 8,
        "episode_runtime": null,
        "maturity_rating": "all age",
        "featured": 0,
        "type": "T",
        "status": 1,
        "created_by": 1,
        "created_at": "2021-08-17T13:19:40.000000Z",
        "updated_at": "2021-11-23T14:46:00.000000Z",
        "is_custom_label": 0,
        "label_id": null,
        "is_upcoming": 0,
        "upcoming_date": null,
        "user-rating": 0
    }
] 
}

Last updated