The Right Stuff (2020)

At the height of the Cold War, newly formed NASA selects seven of the militarys best test pilots to become astronauts. Competing to be the first in space, these men achieve the extraordinary, inspiring the world to turn towards a new horizon of ambition and hope.

2020
Drama
7.0
/ugGbQX9AXwCzMe5a4lcdH7szAMV.jpg Poster

Episodes

Hotel Sierra
0h 46min
Episódio 1
Hotel Sierra
Uma nova agência, NASA, escolhe sete pilotos de teste para serem os primeiros astronautas do país.
2020-10-09
8.7
Agrados
0h 46min
Episódio 2
Agrados
Os Mercuty Sete tomam consciência de sua fama instantânea e das armadilhas que a acompanham.
2020-10-09
8.7
Guerreiro de Combate Único
0h 54min
Episódio 3
Guerreiro de Combate Único
A competição entre os astronautas se intensifica, e Al tem misteriosas crises de vertigem.
2020-10-16
8.7
Advento
0h 51min
Episódio 4
Advento
O ano de 1960 se aproxima. Um lançamento de foguete humilhante coloca em jogo o futuro da NASA.
2020-10-23
8.7
A Sessão de Kona Kai
0h 47min
Episódio 5
A Sessão de Kona Kai
Uma indiscrição leva a um conflito maior que pode determinar quem será escolhido como o primeiro.
2020-10-30
8.7
VOSTOK
0h 47min
Episódio 6
VOSTOK
Com JFK empossado, a NASA está sendo reavaliada. O voo de Shepard é adiado.
2020-11-06
8.7
Zigurate
0h 47min
Episódio 7
Zigurate
O mau tempo põe em risco o voo de Shepard e as tensões entre ele e Glenn atingem um ponto crítico.
2020-11-13
8.7
Voo
0h 48min
Episódio 8
Voo
Após a viagem de Shepard ao espaço, uma pergunta paira sobre os astronautas: o que vem a seguir?
2020-11-20
8.7

Cast

Patrick J. Adams
Patrick J. Adams
John Glenn
Eloise Mumford
Eloise Mumford
Trudy Cooper
Nora Zehetner
Nora Zehetner
Annie Glenn
James Lafferty
James Lafferty
Scott Carpenter
Micah Stock
Micah Stock
Deke Slayton
Jackson Pace
Jackson Pace
Glynn Lunney
Jake McDorman
Jake McDorman
Alan Shephard
Patrick Fischler
Patrick Fischler
Bob Gilruth
Josh Cooke
Josh Cooke
Loudon Wainwright
Eric Ladin
Eric Ladin
Chris Kraft
Shannon Lucio
Shannon Lucio
Louise Shepard
Colin O'Donoghue
Colin O'Donoghue
Gordon Cooper
Aaron Staton
Aaron Staton
Wally Schirra
Michael Trotter
Michael Trotter
Gus Grissom
Kaley Ronayne
Kaley Ronayne
Dee O'Hara

Where Watch

Images

The Right Stuff Poster
The Right Stuff Poster

Video

trailer Oficial

Trailer Oficial [Dublado]

trailer Oficial

trailer Oficial

Trailer Oficial [Legendado]

trailer Oficial

Detailed Information

General Information

Original Title: The Right Stuff

Creators: Hwang Dong-hyuk

Gender: Drama,

Seasons: 1

Episodes: 8

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

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

PHP com cURL

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

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

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

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