The Phenomenon (2020)

This documentary examines unidentified aerial phenomenon. With testimony from high-ranking government officials and NASA Astronauts, Senator Harry Reid says it makes the incredible credible.

2020
Documentary
6.0
/v2WWRtyYKrmLjtXhm53GMsGQQ2T.jpg Poster

Cast

Peter Coyote
Peter Coyote
Narrator (voice)
Barack Obama
Barack Obama
Self (archive footage)
Bill Clinton
Bill Clinton
Self (archive footage)
J. Allen Hynek
J. Allen Hynek
Self (archive footage)
George Knapp
George Knapp
Self - Investigative Reporter
John Podesta
John Podesta
Self - Former White House Chief of Staff
Gerald Ford
Gerald Ford
Self (voice) (archive sound)
Harry Reid
Harry Reid
Self - Senate Majority Leader (2007-2015)
Salma Siddick
Salma Siddick
Self
David Fravor
David Fravor
Self - Navy Strike Fighter Squadron
Edgar D. Mitchell
Edgar D. Mitchell
Self - Apollo 14 Astronaut (archive footage)
Chris Mellon
Chris Mellon
Self - Former Deputy Asst. Secretary of Defense for Intelligence
Jacques Vallée
Jacques Vallée
Self - Physicist / Computer Scientist
Bill Richardson
Bill Richardson
Self - Former U.S. Energy Secretary
Garry Nolan
Garry Nolan
Self - Stanford School of Medicine
Gordon Cooper
Gordon Cooper
Self - NASA Astronaut (archive footage)
John A. Samford
John A. Samford
Self (archive footage)
Harold Brown
Harold Brown
Self - Secretary of the Air Force (archive footage)
Laurance Rockefeller
Laurance Rockefeller
Self (archive footage)
John E. Mack
John E. Mack
Self - Psychiatrist, Harvard University (archive footage)

Where Watch

Images

The Phenomenon Poster
The Phenomenon Poster

Detailed Information

General Information

Original Title: The Phenomenon

Creators: Hwang Dong-hyuk

Gender: Documentary,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $0.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/745272

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

PHP com cURL

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

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

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

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