Resolving Media...

Scraping Sub-Servers

Contacting API endpoint...

Embed
Moovie Resolver Docs
GitHub Repo

Empower your streaming site with our embed player.

Built for seamless integration, smart parallel sub-server fallbacks (Iron, Spider, Wolf, Multi, Dark), and total player control.

Embed Movies

TMDB or IMDb ID is accepted. TMDB IDs are highly recommended, but IMDb IDs also work as long as you keep the tt prefix.

https://moovie-embed.pages.dev/embed/movie/{tmdb_id}

Embed Shows

TMDB or IMDb ID is accepted. For shows, Season and Episode parameters are required inside the path structure.

https://moovie-embed.pages.dev/embed/tv/{tmdb_id}/{season}/{episode}

01. Integration Code

Copy and drop these standard iframe snippets directly into your HTML structure:

<!-- Movie --> <iframe src="https://moovie-embed.pages.dev/embed/movie/157336" width="100%" height="100%" frameborder="0" style="border-radius: 12px;" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
<!-- TV Series --> <iframe src="https://moovie-embed.pages.dev/embed/tv/76479/1/1" width="100%" height="100%" frameborder="0" style="border-radius: 12px;" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>

02. Query Parameters Reference

Parameter Description Syntax
tmdb_id Direct TMDB ID search. Skips internal title lookup entirely. ?tmdb_id=157336
title Search query fallback if ID is missing. ?title=Interstellar
fast Enables rapid scraping mode on the API backend. ?fast=1
media_type Tells lookup search if it is a movie or tv. ?media_type=movie

Integrate with AI

Building a custom portal? Copy this markdown block and paste it directly into Cursor or ChatGPT to generate your integration component instantly:

I am building a movie streaming website and I want to embed the Moovie Embed player via an iframe. Please write the integration code for me based on the following API reference. I want a robust component/script that passes the correct parameters to the URL. ### 1. Base URLs: - Movies: `https://moovie-embed.pages.dev/embed/movie/{tmdb_id}` - TV Series: `https://moovie-embed.pages.dev/embed/tv/{tmdb_id}/{season}/{episode}` ### 2. Supported Parameters: - `fast`: Pass `1` to enable fast background resolver queries. - `title`: Name of the movie/TV show used as matching query metadata.
Click to load active stream sandbox