Stream media files from Google Drive with ease (For free).
Best tool for your Movie and Video Streaming websites.
View API Documentationhttps://gdplayer.vip/api/video
file_id
: A valid Google Drive file ID (Public shared) subtitle
: (Optional) A subtitle url in srt format domains
: (Optional) Allowed embed domains (Separated by comma, without http/https) imdb_id
: imdb id of the movie/tv
season
: Season number (Eg: 1)
episode
: Episode number (Eg: 1)
const fileId = "1bJBs59LNjxYghoTnc_q8FSaW0pHEaYg0";
const domains = "mydomain.com,otherdomain.net";
const response = await fetch(`https://gdplayer.vip/api/video?file_id=${fileId}&domains=${domains}`);
const data = await response.json();
console.log(data.embed_url);
{{api.response}}