Nautilus (2024)

The origin story of the iconic Captain Nemo: an Indian Prince robbed of his birthright and family, a prisoner of the East India Mercantile Company and a man bent on revenge against the forces that have taken everything from him.

2024
Drama
Action & Adventure
Sci-Fi & Fantasy
6.0
/eBHzItKQNfPdt2GL4LcHJy8P1sH.jpg Poster

Episodes

Episódio 1
0h 54min
Episódio 1
Episódio 1
Nemo and his fellow inmates at Kalpani Penal Colony are the slave labourers building an ironclad submarine - the Nautilus. Once finished, Nemo and a trusted crew plan to escape on it. But when Director Crawley arrives to demand the Nautilus be moved to Bombay to be armed - today - Nemo must leave. Now. With whoever he can muster as crew.
2024-10-25
8.7
Episódio 2
0h 53min
Episódio 2
Episódio 2
When the Nautilus is spotted by Company troopers, Nemo must inspire the crew to work together so they can reach the open seas before they’re run down. An encounter with whalers slows them down and just as they are about to reach the open sea and freedom, they are cut off by the formidable Dreadnought - and a game of depth-bomb cat and mouse ensues.
2024-10-25
8.7
Episódio 3
0h 55min
Episódio 3
Episódio 3
On Karajan the crew meet the eccentric White Rajah, but can they trust his hospitality? Nemo discovers a shocking truth, and Humility and the crew learn who Nemo really is.
2024-10-25
8.7
Episódio 4
0h 52min
Episódio 4
Episódio 4
Captain Nemo and his starving crew go ashore on a seemingly deserted island in search of food. When Blaster goes missing, Nemo and Humility embark on a daring rescue mission but soon encounter a giant electric eel.
2024-10-25
8.7
Episódio 5
0h 48min
Episódio 5
Episódio 5
When an eerie red glow appears, the giant eel suddenly releases the Nautilus, it turns out to be a chain of underwater volcanoes. Without steering power, the Nautilus continues to sink towards the dangerous lava - and it soon becomes clear that only Humility can save the crew.
2024-10-25
8.7
Episódio 6
0h 53min
Episódio 6
Episódio 6
The underwater volcanoes turn out to reveal a clue to the legendary underwater city of Atlantis. A small group goes exploring and finds what appears to be an ancient outpost of the lost civilization, but also realizes that it is home to terrifying sea lilies and the crew must fight for their lives.
2024-10-25
8.7
Episódio 7
0h 54min
Episódio 7
Episódio 7
A daring battle between the Company ships Dreadnought and Nautilus leaves both stranded in the Arctic ice, leading to an uneasy truce. Nemo reunites with a friend from his past and is shaken by more revelations about his father.
2024-10-25
8.7
Episódio 8
0h 51min
Episódio 8
Episódio 8
When it is revealed that Nemo has been too daring and put the crew in danger, they lock him in his cabin and Boniface takes command instead. At the magnetic north pole, the problems pile up. Nemo must unite his divided crew by telling them who he really is.
2024-10-25
8.7
Episódio 9
0h 44min
Episódio 9
Episódio 9
When Nautilus finally arrives at the treasure, they realize that it has not been forgotten at all, on the contrary, it is guarded by wild warriors. Nemo feels that he has led his crew to the end of the world - for nothing.
2024-10-25
8.7
Episódio 10
0h 53min
Episódio 10
Episódio 10
The Nautilus crew spread rumours that the East India Mercantile Company is failing. When the stock price plunges, a shareholder meeting is called for tonight. Nemo and the crew have three hours to scheme their way into that meeting, so they can dissolve the Company forever.
2024-10-25
8.7

Cast

Luke Arnold
Luke Arnold
Captain Billy Millais
Shazad Latif
Shazad Latif
Nemo
Benedict Hardie
Benedict Hardie
Edward Cuff
Cameron Cuffe
Cameron Cuffe
Algernon Pitt
Céline Menville
Céline Menville
Loti
Thierry Frémont
Thierry Frémont
Benoit
Georgia Flood
Georgia Flood
Humility Lucas
Pacharo Mzembe
Pacharo Mzembe
Boniface
Damien Garvey
Damien Garvey
Director Crawley
Ling Cooper Tang
Ling Cooper Tang
Suyin
Jacob Collins-Levy
Jacob Collins-Levy
Captain Youngblood
Andrew Shaw
Andrew Shaw
Jiacomo
Arlo Green
Arlo Green
Turan
Kayden Price
Kayden Price
Blaster
Tyrone Ngatai
Tyrone Ngatai
Kai
Ashan Kumar
Ashan Kumar
Ranbir

Where Watch

Images

Nautilus Poster
Nautilus Poster

Detailed Information

General Information

Original Title: Nautilus

Creators: Hwang Dong-hyuk

Gender: Drama, Action & Adventure, Sci-Fi & Fantasy,

Seasons: 1

Episodes: 10

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

Awards and Recognitions

  • 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

Interesting facts

  • 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://api.moviendb.com/v1/tv/131835

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

PHP com cURL

<?php
  $url = "https://api.moviendb.com/v1/tv/131835";

  $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://api.moviendb.com/v1/tv/131835";

$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://api.moviendb.com/v1/tv/131835';

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"
    }
  ]
}