Embed movies and TV anywhere with a single iframe. Adaptive HLS, automatic failover, REST API.
Sub-second startup with automatic quality detection. The player adapts to network conditions in real-time, ensuring smooth playback on any connection.
Multiple redundant providers per title. Transparent switching with no buffering, no interruption, and zero configuration required.
<!-- one line --> <iframe src="/embed/movie/{id}" allowfullscreen loading="lazy" ></iframe>
Copy one line of HTML — it works everywhere. React, Vue, WordPress, static sites, any framework. No packages, no JavaScript, no configuration.
Enter a TMDB ID and see the player render instantly.
Clean JSON endpoints for every integration need.
Stream URLs, subtitles, and metadata for any movie.
{
"success": true,
"title": "Fight Club",
"streams": [{ "proxyUrl": "/api/proxy/..." }],
"subtitles": []
}Stream URLs and metadata for any TV episode.
{
"success": true,
"title": "Game of Thrones",
"streams": [{ "proxyUrl": "/api/proxy/..." }]
}Subtitle listing in 43+ languages. WebVTT format.
{
"success": true,
"subtitles": [
{ "label": "English", "file": "https://..." }
]
}Subtitle listing for TV episodes.
{
"success": true,
"subtitles": [
{ "label": "English", "file": "https://..." }
]
}Server health and available sources.
{ "status": "online", "sources": [...] }