Crimson Tide (1995)

After the Cold War, a breakaway Russian republic with nuclear warheads becomes a possible worldwide threat. U.S. submarine Capt. Frank Ramsey signs on a relatively green but highly recommended Lt. Cmdr. Ron Hunter to the USS Alabama, which may be the only ship able to stop a possible Armageddon. When Ramsey insists that the Alabama must act aggressively, Hunter, fearing they will start rather than stop a disaster, leads a potential mutiny to stop him.

1995
War
Drama
Action
Thriller
7.0
/xsUP5CRd100Rl2cwGcADCBQJ571.jpg Poster

Cast

Jacob Vargas
Jacob Vargas
Sonarman #2
Matt Craven
Matt Craven
Lt. Roy Zimmer
Earl Billings
Earl Billings
Rick Marichek
Steve Zahn
Steve Zahn
Seaman William Barnes
Michael Chieffo
Michael Chieffo
Chief Kline
Rocky Carroll
Rocky Carroll
Lt. Darik Westergard
James Gandolfini
James Gandolfini
Lt. Robert 'Bobby' Dougherty
Chris Ellis
Chris Ellis
Additional Magician
Gene Hackman
Gene Hackman
Captain Franklin "Frank" Ramsey
Denzel Washington
Denzel Washington
Lt. Commander Ronald "Ron" Hunter
Danny Nucci
Danny Nucci
Petty Officer Danny Rivetti
Trevor St. John
Trevor St. John
Launcher
Kai Lennox
Kai Lennox
Sonarman #3
Michael Milhoan
Michael Milhoan
Chief of the Watch Hunsicker
Ryan Phillippe
Ryan Phillippe
Seaman Grattam
Viggo Mortensen
Viggo Mortensen
Lt. Peter 'Weps' Ince
Steve Gonzales
Steve Gonzales
Soldier (uncredited)
Vanessa Bell Calloway
Vanessa Bell Calloway
Julia Hunter
Mo Gallini
Mo Gallini
Seaman Kuhne (uncredited)
James Lesure
James Lesure
Guard #2
Eric Bruskotter
Eric Bruskotter
Bennefield
Henry Mortensen
Henry Mortensen
Henry Ince
Rick Schroder
Rick Schroder
Lt. Paul Hellerman
Billy Devlin
Billy Devlin
Navigator
Scott Burkholder
Scott Burkholder
Tactical Supervising Officer Billy Linkletter
Daniel von Bargen
Daniel von Bargen
Vladimir Radchenko
Sean O'Bryan
Sean O'Bryan
Phone Talker
Jason Robards
Jason Robards
Rear Admiral Anderson (uncredited)
Brenden Jefferson
Brenden Jefferson
Luke
George Dzundza
George Dzundza
Chief of the Boat Cob
Mark Christopher Lawrence
Mark Christopher Lawrence
Head Cook Rono
R.J. Knoll
R.J. Knoll
Marty Sotille
Tommy Bush
Tommy Bush
Admiral Williams
Scott Grimes
Scott Grimes
Petty Officer Hilaire
Marcello Thedford
Marcello Thedford
Lawson
Victor Togunde
Victor Togunde
Sailor with Oba
Marianne Hettinger
Marianne Hettinger
Board of Inquiry Member (uncredited)
Dennis Garber
Dennis Garber
Fire Control Technician
Rad Daly
Rad Daly
Lt. Comdr. Nelson
Jaime Gomez
Jaime Gomez
Officer of the Deck Mahoney
Jim Boyce
Jim Boyce
Diving Officer
Lillo Brancato
Lillo Brancato
Petty Officer Third Class Russell Vossler
Lennox Brown
Lennox Brown
Smiling Sailor (uncredited)
Troy A. Cephers
Troy A. Cephers
Sailor #1
Gerald Emerick
Gerald Emerick
(uncredited)
Ashley Calloway
Ashley Calloway
Robin
Richard Valeriani
Richard Valeriani
Richard Valeriani
Rayder Woods
Rayder Woods
Ensign (uncredited)

Images

Crimson Tide Poster
Crimson Tide Poster

Video

trailer Oficial

Maré Vermelha 1995 Trailer Legendado

trailer Oficial

Detailed Information

General Information

Original Title: Crimson Tide

Creators: Hwang Dong-hyuk

Gender: War, Drama, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $53,000,000.00

Revenue: $157,387,195.00

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/movie/8963

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

PHP com cURL

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

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

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

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