movie (collection) └── movieId (document) ├── title: "Inception" ├── title_original ├── year: 2010 ├── poster: "https://..." ├── backdrop ├── description: "..." ├── genres: ["Sci-Fi", "Action"] ├── rating: 8.8 ├── active ├── id_youtube ├── sidebar ├── createdAt ├── duracion movie └── movieId └── videos_movie (subcollection) └── videoId ├── quality: "1080p" ├── language: "LAT" ├── format: "m3u8" ├── url: "https://cdn.example.com/inception_1080.m3u8" ├── server: "CDN-1" GET /movies GET /movies/{id} GET /movies/{id}/videos_movie *********************************************************************************** series (collection) └── seriesId (document) ├── title ├── description ├── poster ├── banner ├── year ├── genres [] ├── rating ├── status (ongoing / ended) ├── active series └── seriesId └── seasons (subcollection) └── seasonId ├── seasonNumber: ├── name: ├── year: ├── active series └── seriesId └── seasons └── seasonId └── episodes (subcollection) └── episodeId ├── episodeNumber: 1 ├── title: "Piloto" ├── overview: "..." ├── duration: 48 ├── thumbnail: "https://..." ├── active series └── seriesId └── seasons └── seasonId └── episodes └── episodeId └── videos_serie (subcollection) └── videoId ├── quality: "1080p" ├── language: "LAT" ├── format: "m3u8" ├── server: "CDN-1" ├── url: "https://..." GET /series GET /series/{id} GET /series/{id}/seasons GET /series/{id}/seasons/{season}/episodes GET /series/{id}/seasons/{season}/episodes/{episode}/videos_serie ****************************************************** TMDB API Key 1559f1f0a886aa7e93f22e09c47b9c9e TMDB Default language Español **********************************************