🚧 The Pewds api documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Movie , Tv & Anime
Movie & Tv Show
Get Movie Episode Streaming Links

Get Movie & Tv Episode Streaming Links

Example code is provided for both JavaScript, along with a response schema.

Route Schema (URL)

https://api.pewds.vercel.app/movie/watch/{type}/{id}/{episodeId}

Alternative

https://api.pewds.vercel.app/movie/watchalt/{type}/{id}/{episodeId}

Path Parameters

ParameterTypeDescriptionRequired?Default
typestringThe media type of the tv / movie; i.e.. tv movieYesN/A
idstringThe show / movie id watch-the-flash-39535YesN/A
episodeIdstringThe ID of the selected episode 2899YesN/A

Request Samples

import axios from "axios";
 
// Using the example id of "movie/watch-titanic-68827" and the episodeId of  a "movie" "68827".
const url = "https://api.pewds.vercel.app/movie/watch/movie/watch-titanic-68827/68827";
const movie = async () => {
    try {
        const { data } = await axios.get(url);
        return movie;
    } catch (err) {
        throw new Error(err.message);
    }
};
 // Using the example id of "tv/watch-money-heist-39409" and the episodeId of  a "tv" "24932"
const url2 = "https://api.pewds.vercel.app/movie/watch/tv/watch-money-heist-39409/24932";
const tv = async () => {
    try {
        const { data } = await axios.get(url2);
        return tv;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(movie , tv);

Response Schema

MIME Type: application/json

{
    "headers": {
        "Referer": "string"
    },
    "sources": [
        {
        "url": "string",
        "quality": "string",
        "isM3U8": true
        }
    ],
    "subtitles": [
        {
        "url": "string",
        "lang": "string"
        }
    ]
}