Integrá películas, series, anime y TV en vivo con un iframe. Reproductor Netflix-style, failover automático, sin API key.
| Param | Tipo | Desc |
|---|---|---|
| id | integer | TMDB ID de la película |
<iframe src="https://stream-vault-two-phi.vercel.app/embed/movie/272" width="100%" height="500" allowfullscreen allow="autoplay; encrypted-media"></iframe>
| Param | Tipo | Desc |
|---|---|---|
| id | integer | TMDB ID |
| season | integer | Temporada |
| episode | integer | Episodio |
<iframe src="https://stream-vault-two-phi.vercel.app/embed/tv/1399?season=1&episode=1" width="100%" height="500" allowfullscreen allow="autoplay; encrypted-media"></iframe>
| Param | Tipo | Desc |
|---|---|---|
| type | string | movie | tv |
| id | integer | TMDB ID |
| season | integer | (tv) |
| episode | integer | (tv) |
curl "https://stream-vault-two-phi.vercel.app/api/v1/embed-serve?type=movie&id=272"
// Respuesta:
{
"success": true,
"data": {
"title": "Batman Begins",
"year": "2005",
"sources": [
{ "url": "...m3u8", "playbackType": "hls" },
{ "url": "...mp4", "playbackType": "mp4" }
]
}
}| Param | Tipo | Desc |
|---|---|---|
| slug | string | Slug del canal |
<iframe src="https://stream-vault-two-phi.vercel.app/embed/live/caracol-tv" width="100%" height="500" allowfullscreen allow="autoplay; encrypted-media"></iframe>
| Param | Tipo | Desc |
|---|---|---|
| search | string | Filtrar por nombre |
| page | integer | Página |
| limit | integer | Por página |
curl "https://stream-vault-two-phi.vercel.app/api/v1/tv/all?search=caracol&limit=10"
// Respuesta:
{
"success": true,
"results": [
{
"name": "Caracol TV",
"slug": "caracol-tv",
"country": "Colombia",
"url": "...m3u8"
}
]
}