Skip to content

AmineSoukara/EgyBest-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RUN

Unofficial EgyBest API.

contributors last update forks stars open issues license hits

👨‍💻 Dev & Support:

⚠️ Note:

  • For Personal Use Only, Don't Create Or Build Something Huge With This API Without Permission Otherwise You Will Be Banned
  • This Project Is Licensed Under The GNU General Public License v3.0

⭐️ Features:

  • Smart Search
  • Extract Full Info From Url (Movie-Serie/Anime)
  • Extract: Story - Image - Title - Trailer - Actors Info - Note
  • Extract Download and Stream Links With Full Info
  • Extract Similar Movies
  • Extract Seasons / Episodes
  • Extract Previous And Next Episode
  • Extract Movies Or Series From Paths
  • And More ...

🕹 Libraries:

❤️ Used By :

🪐 Docs / Examples:

How To Use ?

🎰 Mandatory Configs

  • Make Sure You Have All These Mandatory Configs, API Will Not Work Without it
API_URL - ACCESS_TOKEN - REFRESH_TOKEN - ID - PASSWORD
  • You Can Get it From:

/dls:

Extract Download and Stream Links With Full Info

Parameters:

Name Required Type Description
v False Number 1-2 Return As list 3-4 As Dict, Default 1
url True String Episode or Movie link

Example:

import requests
                 
TOKEN = "abcd123"
API = "http:https://0.1.2.3"
MOVIE_URL = "https://www.egybest.org/movie/top-gun-maverick-2022"       
HEADERS = {'Authorization': 'Bearer ' + TOKEN, 'Accept': 'application/json', 'Content-Type': 'application/json'}
PARAMS = {"url": MOVIE_URL, "v": 2}                      
URL = API +  "/dls"

response = requests.get(URL, headers=HEADERS, params=PARAMS)

print(response.status_code)
print(response.json())

⭐️