HiMovies is a free and online streaming website for Movies and Tv-Shows. It offers a wide range of hosts or sites if you may, but all of these sites are built upon the same template of some sort. Hence, the reason why there are so many.
Check out the clones/mirrors here
This Rest API is made possibly by using simple scraping tools and a little bit of copying and some research from other people's source code. Take note that if HiMovies and its clones decided to update or even upgrade their website, this API might fail and perhaps it might take a while for me to fix it 🛠️
Luckily with all of its mirrors and clones, you can choose a specific instance that you like 👍
Requirements
- NodeJS at least >= 13.x.x
Step 1: Clone the repository
git clone https://github.com/Thanatoslayer6/Himovies-Unofficial-API.git
Step 2: Install the dependencies
cd Himovies-Unofficial-API && npm install
Step 3: Setup the .env file (OPTIONAL)
Create a .env file at the project's root
# Example .env file
# The port where you want your API to run
# Default: 3000
PORT=2000
# The domain you want to scrape, notice theres no slash at the end of the URL
# Default: "https://2kmovie.cc"
DOMAIN="https://dopebox.to"
# The timeout per http request
# Default: 5000
TIMEOUT=10000
Step 4: Enjoy and run 😎
npm run start
# Or you can just run the file instead
node index.js
Searching
- Search for a Tv-Show or Movie:
GET: /search/[query]
Movies
- Movie Servers:
GET: /movie/servers/[movieId]
Tv-Show
- TV Seasons:
GET: /tv/seasons/[tvId]
- TV Episodes:
GET: /tv/episodes/[seasonId]
- TV Episode Servers:
GET: /tv/servers/[episodeId]
Links
- TV Episode or Movie:
GET: /links/[serverId]?href=[episodeId or movieId]