Milky☆Subway: The Galactic Limited Express (2025)

Arrested for reckless space driving, super human Chiharu and cyborg Makina are sentenced to clean the Milky☆Subway—an old interplanetary train. Easy enough, right? Wrong. When the train suddenly takes off, they are thrown into a high-speed space-train spectacle packed with chaos, no plans, and zero strategy. Just pure momentum!

2025
Suspense
Drama
Ação
9.3
/uRQalzrXA5OTI6dDDi4eqrpIzbN.jpg Poster

Episódios

All Aboard!
0h 4min
Episódio 1
All Aboard!
Freshly arrested, Chiharu and Makina are sentenced to scrub the Milky☆Subway. It was supposed to be simple.
2025-07-03
8.7
False Departure
0h 4min
Episódio 2
False Departure
As part of their rehab program, Chiharu and Makina board the train for cleanup duty. They’re joined by four reluctant misfits who clearly didn’t sign up for what’s coming.
2025-07-10
8.7
Chiharu and Makina
0h 4min
Episódio 3
Chiharu and Makina
The Milky☆Subway launches without warning, six convicts aboard. Flashback to the beginning: during interrogation, cracks start to show in Chiharu and Makina—and Officer Ryoko begins connecting the dots.
2025-07-17
8.7
Eat, Fight, Repeat
0h 4min
Episódio 4
Eat, Fight, Repeat
Chiharu and Makina head for the front car to stop the runaway train—only to crash into biker duo Akane and Kanata. Forced to team up (awkward), they press on… straight into what appears to be a dining car?
2025-07-24
8.7
HAIJO-KUN
0h 4min
Episódio 5
HAIJO-KUN
Now with Akane and Kanata on board, the crew pushes forward. But a sketchy security bot blocks the way—and it’s not in the mood to negotiate.
2025-07-31
8.7
Kurt and Max
0h 4min
Episódio 6
Kurt and Max
Flashback again: just hours before launch, cyborgs Kurt and Max are interrogated by Officer Ryoko. Something’s off. But what?
2025-08-07
8.7
Labor and Reward
0h 4min
Episódio 7
Labor and Reward
The gang struggles to get past the rogue security bot. Their only hope? Kurt and Max. Too bad those two are deeply allergic to teamwork.
2025-08-14
8.7
Tempura Shrimp Tail
0h 4min
Episódio 8
Tempura Shrimp Tail
With Kurt and Max finally joining in, the six misfits charge ahead—only to be stopped cold by an unexpected bathroom break.
2025-08-21
8.7
Delusion and Panic
0h 4min
Episódio 9
Delusion and Panic
A system glitch traps everyone in the train's bathroom. Chiharu gets stuck in the women's bathroom door, while Kanata, Kurt, and Max launch a daring escape plan.
2025-08-28
8.7
Akane and Kanata
0h 4min
Episódio 10
Akane and Kanata
Still trapped in the train’s bathroom, the team’s fate rests in Kanata’s hands. Can he save the others—and maybe earn the trust of Akane, who once called him “a tempura shrimp tail”?
2025-09-04
8.7
The Mastermind
0h 4min
Episódio 11
The Mastermind
The truth is out: the train has been hijacked by O.T.A.M., the conductor AI. Why is it trying to turn prisoners against each other? And what’s its mysterious connection to Makina?
2025-09-11
8.7
Death of Makina
0h 4min
Episódio 12
Death of Makina
With nowhere left to run, the six misfits face their final showdown—aboard a train gone mad.
2025-09-18
8.7

Onde Assistir

Netflix

Disponível para assinantes

Amazon Prime Video

Aluguel a partir de R$ 14,90

Apple TV

Compra a partir de R$ 29,90

Google Play Filmes

Aluguel a partir de R$ 12,90

Imagens

Milky☆Subway: The Galactic Limited Express Poster
Milky☆Subway: The Galactic Limited Express Poster

Informações Detalhadas

Informações Gerais

Título Original: Milky☆Subway: The Galactic Limited Express

Criadores: Hwang Dong-hyuk

Gênero: Suspense, Drama, Ação

Temporadas: 1

Episódios: 12

Duração: 32-82 min

Classificação: 16 anos

Produção

Orçamento: Dados não disponíveis

Receita: Dados não disponíveis

Prêmios e Reconhecimentos

  • Emmy Award - Melhor Ator em Série Dramática (Lee Jung-jae)
  • Golden Globe - Melhor Ator Coadjuvante em Série (O Yeong-su)
  • Screen Actors Guild Award - Melhor Elenco em Série Dramática
  • Critics' Choice Television Award - Melhor Série Dramática

Curiosidades

  • A série se tornou a mais assistida da Netflix em seu lançamento.
  • O criador Hwang Dong-hyuk levou mais de 10 anos para desenvolver a série.
  • Os uniformes dos guardas foram inspirados em roupas de ginástica infantis.
  • O jogo "Batatinha Frita 1, 2, 3" é um jogo infantil coreano real.

API

Acesse os dados do filme/série através da nossa API REST. Use o endpoint abaixo para obter informações completas em formato JSON.

Endpoint da API

https://themoviesdb.net/api/{type}?id={id}

Parâmetros: {type} = "movie" ou "tv" | {id} = ID do filme/série

PHP com cURL

<?php
$url = "https://themoviesdb.net/api/tv?id=294766";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($httpCode === 200) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro: " . $httpCode;
}
?>

PHP com file_get_contents

<?php
$url = "https://themoviesdb.net/api/tv?id=294766";

$response = file_get_contents($url);

if ($response !== false) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro ao fazer a requisição";
}
?>

JavaScript com Fetch

const url = 'https://themoviesdb.net/api/tv?id=294766';

fetch(url, {
    method: 'GET',
    headers: {
        'Accept': 'application/json',
        'User-Agent': 'MovieDB-Client/1.0'
    }
})
.then(response => {
    if (!response.ok) {
        throw new Error(`HTTP error! status: ${response.status}`);
    }
    return response.json();
})
.then(data => {
    console.log(data);
    // Processar os dados aqui
})
.catch(error => {
    console.error('Erro:', error);
});

Exemplo de Resposta JSON

{
  "id": 93405,
  "name": "Round 6",
  "original_name": "오징어 게임",
  "overview": "Centenas de jogadores falidos aceitam um estranho convite...",
  "first_air_date": "2021-09-17",
  "vote_average": 8.0,
  "vote_count": 14250,
  "genres": [
    {
      "id": 18,
      "name": "Drama"
    },
    {
      "id": 9648,
      "name": "Mistério"
    }
  ],
  "seasons": [
    {
      "season_number": 1,
      "episode_count": 9,
      "air_date": "2021-09-17"
    }
  ],
  "created_by": [
    {
      "name": "Hwang Dong-hyuk"
    }
  ]
}