Next Hour App
  • Introduction
    • Introduction
    • Key Features
    • Flutter
  • Installation
    • Flutter Installation
    • App Secret Key
  • project setup
    • App Deployment
      • Firebase
    • iOS Setup Instructions
    • Google Drive Key
    • OneSignal
    • Images
    • Reskinning
  • Publish your app
    • Requirements to Publish App
  • FAQ
    • Installation FAQ's
    • Access Denied
    • General Setting
    • Disclaimer
    • Regular & Extended Licenses
    • Privacy Policy
  • Troubleshoot
    • Troubleshoot
    • Changelogs
  • Source & credit
    • Source & Credit
  • Support
    • Support
  • conclution
    • Conclusion
  • our products
    • Next Hour Addons
    • Our Products
  • Api Document
    • Getting Started
  • Get secret key
  • Auth Api
    • Login
  • Home Page Api
  • Actor detail page
  • Payment Api
    • Payment Method List
    • Manual payment list
    • Subscribed with manual payment
    • Subscribed with free subscription
    • Subscription Stop and Resume
    • Invoice
  • Player Setting Api
    • Player Setting
    • Advertise
  • User Api
    • View User profile
    • Wishlist
    • Watch History
    • User Profile Update
    • Manage Profile
    • Notification
  • Coupon Api
  • Other Api
    • List of Contents
    • Menu
    • Slider
    • Package
    • List of all movies
    • List of all tvseries
    • List of all movies, tveries and top movie and tvseries
    • Recent Movies and Tvseries
    • List of menu by movies and tvseries
    • Language by movies and tvseries
Powered by GitBook
On this page
  • List of recent movies
  • api/RecentMovies
  • List of recent tvseries
  • api/RecentTvSeries
  1. Other Api

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
    },
   
]
}
{
    "message": "Unauthorized !"
}

//or

{
    "message": "Secret Key is required"
}
{
    "message": "Invalid Secret Key !"
}

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
    }
] 
}
{
    "message": "Unauthorized !"
}

//or

{
    "message": "Secret Key is required"
}
{
   "message": "Invalid Secret Key !"
}
PreviousList of all movies, tveries and top movie and tvseriesNextList of menu by movies and tvseries

Last updated 3 years ago