Das Boot (1985)

Based on an autobiographical novel by German World War II photographer Lothar-Guenther Buchheim, Das Boot follows the lives of a fearless U-Boat captain (Jurgen Prochnow) and his inexperienced crew as they patrol the Atlantic and Mediterranean in search of Allied vessels, taking turns as hunter and prey.

1985
War & Politics
Drama
8.0
/gFMCzmcEZVeujmrUuayIH8dQjPr.jpg Poster

Episodes

Episódio 1
0h 52min
Episódio 1
Episódio 1
Autumn 1941. The crew of the U 96 celebrates its last day on land in La Rochelle, France. The exuberance of the men is nothing more than the fear of the next mission, which could be the last. War correspondent Lieutenant Werner does not understand the apparent cheerfulness, as he does not yet know the pitiless harshness of the war in a cramped submarine.
1985-02-24
8.7
Episódio 2
0h 52min
Episódio 2
Episódio 2
The U 96 crew has been running on patrol south-west of Ireland for days. Monotony, inactivity, and boredom on board are transformed into aggression. A message about a convoy changes the mood of the crew. The "old man" risks a periscope attack. Surprisingly, a destroyer emerges, which hunts the submarine with depth charges...
1985-03-03
8.7
Episódio 3
0h 52min
Episódio 3
Episódio 3
For almost four weeks, the submarine is traveling south-west of Ireland and is held underwater by a destroyer during its first attack on an English convoy. Exploding depth charges hurl the crew and submarine into chaos. But the "old man" succeeds in maneuvering U 96 out of the danger zone. Subsequently, the submarine gets into a storm period lasting more than three weeks.
1985-03-10
8.7
Episódio 4
0h 52min
Episódio 4
Episódio 4
The U 96 encounters a convoy and sinks three cargo ships with its torpedoes. Then a 24-hour pursuit of the submarine begins with two destroyers dropping depth charges. The "old man" tries to escape in 230 meters of water depth. The end for U 96 seems to have come.
1985-03-17
8.7
Episódio 5
0h 52min
Episódio 5
Episódio 5
The U 96 has been dispatched to the Mediterranean. After picking up supplies in the Spanish town of Vigo, the journey to Gibraltar begins. An aviation attack during the nightly crawl and cruising British ships force U 96 to a neck breaking dive - at 280 meters depth the submarine hits the bottom of the ocean ..
1985-03-24
8.7
Episódio 6
0h 52min
Episódio 6
Episódio 6
The submarine is heavily damaged, lying on the ocean floor in a depth of 280 meters. Despite the seemingly hopeless situation, the crew starts with repair work and dares an attempt to emerge. After tormented tension the U 96 finally breaks off from the ocean floor ...
1985-03-31
8.7

Cast

Martin Semmelrogge
Martin Semmelrogge
Zweiter Wachoffizier
Jürgen Prochnow
Jürgen Prochnow
Der Alte
Otto Sander
Otto Sander
Kapitänleutnant Philipp
Uwe Ochsenknecht
Uwe Ochsenknecht
Bootsmann Lamprecht
Herbert Grönemeyer
Herbert Grönemeyer
Leutnant Werner
Klaus Wennemann
Klaus Wennemann
Leitender Ingenieur
Hubertus Bengsch
Hubertus Bengsch
Erster Wachoffizier
Bernd Tauber
Bernd Tauber
Obersteuermann
Erwin Leder
Erwin Leder
Obermaschinist Johann
Martin May
Martin May
Fähnrich Ullmann
Heinz Hoenig
Heinz Hoenig
Funkmaat Hinrich
Claude-Oliver Rudolph
Claude-Oliver Rudolph
Dieselheizer Ario
Jan Fedder
Jan Fedder
Bootsmaat Pilgrim
Rita Cadillac
Rita Cadillac
Monique
Ralf Richter
Ralf Richter
Frenssen
Oliver Stritzel
Oliver Stritzel
Schwalle
Lutz Schnell
Lutz Schnell
Dufte
Günter Lamprecht
Günter Lamprecht
Kapitän des Versorgungsschiffs "Weser"

Images

Das Boot Poster
Das Boot Poster

Detailed Information

General Information

Original Title: Das Boot

Creators: Hwang Dong-hyuk

Gender: War & Politics, Drama,

Seasons: 1

Episodes: 6

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/156249

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

PHP com cURL

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

  $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/156249";

$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/156249';

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