Apollo 13 (1995)

The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1970, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.

1995
History
Drama
7.0
/22dmzRXNULYaIllVAiIpa2bjmEY.jpg Poster

Cast

Jack Conley
Jack Conley
Science Reporter
Ed Harris
Ed Harris
Gene Kranz
Tom Hanks
Tom Hanks
Jim Lovell
Christian Clemenson
Christian Clemenson
Dr. Chuck
Chris Ellis
Chris Ellis
Deke Slayton
Rance Howard
Rance Howard
Reverend
James Ritz
James Ritz
Ted
Clint Howard
Clint Howard
Sy Liebergot - EECOM White
Todd Hallowell
Todd Hallowell
Noisy Civilian
Geoffrey Blake
Geoffrey Blake
GUIDO Gold
Bill Paxton
Bill Paxton
Fred Haise
Walter von Huene
Walter von Huene
Technician
Kathleen Quinlan
Kathleen Quinlan
Marilyn Lovell
Wayne Duvall
Wayne Duvall
LEM Controller White
Andy Milder
Andy Milder
GUIDO White
Christopher John Fields
Christopher John Fields
Booster White
Ray McKinnon
Ray McKinnon
Jerry Bostick - FIDO White
Marc McClure
Marc McClure
Glynn Lunney
Brett Cullen
Brett Cullen
CAPCOM 1
Kevin Bacon
Kevin Bacon
Jack Swigert
Max Grodénchik
Max Grodénchik
FIDO Gold
Thom Barry
Thom Barry
Orderly
Meadow Williams
Meadow Williams
Kim
Gary Sinise
Gary Sinise
Ken Mattingly
Loren Dean
Loren Dean
John Aaron - EECOM Arthur
Xander Berkeley
Xander Berkeley
Henry Hurt
Tom Wood
Tom Wood
EECOM Gold
Paul Mantee
Paul Mantee
Reporter
Gabriel Jarret
Gabriel Jarret
GNC White
Michele Little
Michele Little
Jane Conrad
Max Elliott Slade
Max Elliott Slade
Jay Lovell
Googy Gress
Googy Gress
RETRO White
John Short
John Short
INCO White
Jane Jenkins
Jane Jenkins
Neighbor
Jim Meskimen
Jim Meskimen
TELMU White
Bruce Wright
Bruce Wright
Anchor
Steve Rankin
Steve Rankin
Pad Rat
Brian Markinson
Brian Markinson
Pad Rat
Thomas Crawford
Thomas Crawford
Reporter
Tracy Reiner
Tracy Reiner
Mary Haise
David Andrews
David Andrews
Pete Conrad
Ben Marley
Ben Marley
John Young
Joe Spano
Joe Spano
NASA Director
Mary Kate Schellhardt
Mary Kate Schellhardt
Barbara Lovell
Emily Ann Lloyd
Emily Ann Lloyd
Susan Lovell
Miko Hughes
Miko Hughes
Jeffrey Lovell
Jean Speegle Howard
Jean Speegle Howard
Blanch Lovell
Ned Vaughn
Ned Vaughn
CAPCOM 2
Joseph Culp
Joseph Culp
TELMU Gold
Ben Bode
Ben Bode
INCO Gold
Todd Louiso
Todd Louiso
FAO White
Endre Hules
Endre Hules
Guenter Wendt
Austin O'Brien
Austin O'Brien
Whiz Kid
Arthur Senzy
Arthur Senzy
SIM Tech
Carl Gabriel Yorke
Carl Gabriel Yorke
SIM Tech
Ryan Holihan
Ryan Holihan
SIM Tech
Roger Corman
Roger Corman
Congressman
Ivan Allen
Ivan Allen
Anchor
Jon Bruno
Jon Bruno
Anchor
Reed Rudy
Reed Rudy
Roger Chaffee
Steve Bernie
Steve Bernie
Virgil Grissom
Herbert Jefferson Jr.
Herbert Jefferson Jr.
Reporter
John Dullaghan
John Dullaghan
Reporter
Frank Cavestani
Frank Cavestani
Reporter
Jim Lovell
Jim Lovell
Captain of USS Iwo Jima (uncredited)
Neil Armstrong
Neil Armstrong
Himself (archive footage)
Pope Paul VI
Pope Paul VI
Himself (archive footage)

Images

Apollo 13 Poster
Apollo 13 Poster

Detailed Information

General Information

Original Title: Apollo 13

Creators: Hwang Dong-hyuk

Gender: History, Drama,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $52,000,000.00

Revenue: $355,237,933.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/568

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

PHP com cURL

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

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

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

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