VidSrc | Free HD Movie & TV Streaming API – No Ads

VidSrc.sbs is a free movie and TV streaming API built for developers. Embed HD video sources anywhere, no ads, no hassle. Start streaming online today.

https://vidsrc.sbs/movie/533535
Movie: 533535

Premium Features

Everything you need to deliver a world-class streaming experience

Massive Library

Thousands of movies and TV series across every genre.

Watch on Any Device

Seamlessly switch between phone, tablet, laptop, and Smart TV.

Instant Streaming

No buffering, no waiting. Ultra-fast servers deliver crisp HD streams.

Smart Discovery

Trending, top-rated, and personalised picks.

Auto Update

Content added every day, updated automatically

Highest Quality

Latest available quality and the fastest

API Documentation

Comprehensive API reference for embedding movies and series using TMDB or IMDB IDs.

Movie Embed URL
https://vidsrc.sbs/movie/{tmdb_id}
Example iframe:
<iframe src="https://vidsrc.sbs/movie/533535" allowfullscreen></iframe>
TV Shows Embed URL
https://vidsrc.sbs/tv/{tmdb_id}/{season}/{episode}

Customize the player behaviour using URL query parameters.

?autoplay=1
Start playback automatically.
?color=e50914
Set player accent colour (hex, without #).
?primaryColor=e50914
Alias for color.
?secondaryColor=ffffff
Set secondary / controls colour.
?poster=https://…
Override poster image URL.
?title=Movie+Title
Override player title text.
?sub=en
Preselect subtitle language (ISO 639-1).
?lang=en
Set player UI language.
?controls=0
Hide native player controls.

Track and restore user watch progress via query params or postMessage.

?t=120
Start at specific timestamp (seconds).
?resume=1
Resume from last saved position.
postMessage Events
window.addEventListener('message', e => { if(e.data.type==='timeupdate') saveProgress(e.data.time); })