Contact (1997)

A radio astronomer receives the first extraterrestrial radio signal ever picked up on Earth. As the world powers scramble to decipher the message and decide upon a course of action, she must make some difficult decisions between her beliefs, the truth, and reality.

1997
Science Fiction
Drama
Mystery
7.0
/h0gZKEAFCjVUhvRf33lHHSxKFWu.jpg Poster

Cast

Holly Cross Vagley
Holly Cross Vagley
Religious Zealot (uncredited)
Jay Leno
Jay Leno
Jay Leno
Angela Bassett
Angela Bassett
Rachel Constantine
John Hurt
John Hurt
S. R. Hadden
Tom Skerritt
Tom Skerritt
David Drumlin
Geoffrey Blake
Geoffrey Blake
Fisher
James Woods
James Woods
Michael Kitz
Leo Lee
Leo Lee
Major Domo
William Fichtner
William Fichtner
Kent
Rob Lowe
Rob Lowe
Richard Rank
Marc Macaulay
Marc Macaulay
NASA Technician
David Morse
David Morse
Ted Arroway
Matthew McConaughey
Matthew McConaughey
Palmer Joss
Jodie Foster
Jodie Foster
Ellie Arroway
Boris Lee Krutonog
Boris Lee Krutonog
Astronaut (uncredited)
Carl Gilliard
Carl Gilliard
Controller (uncredited)
Bill Clinton
Bill Clinton
Self (archive footage) (uncredited)
Jena Malone
Jena Malone
Young Ellie
Philippe Bergeron
Philippe Bergeron
French Committee Member
Max Martini
Max Martini
Willie
Cenk Uygur
Cenk Uygur
Reporter (uncredited)
David St. James
David St. James
Joint Chief
Marisa Petroro
Marisa Petroro
Oval Office Secretary (uncredited)
Jeffery Thomas Johnson
Jeffery Thomas Johnson
Mechanical
Jake Busey
Jake Busey
Joseph
Robin Gammell
Robin Gammell
Project Official
Larry King
Larry King
Larry King
J.A. Preston
J.A. Preston
Senator (uncredited)
Yuji Okumoto
Yuji Okumoto
Electrical
Jennifer Balgobin
Jennifer Balgobin
Dr. Patel
Ming Lo
Ming Lo
Pod Systems Control (uncredited)
Alex Veadov
Alex Veadov
Russian Cosmonaut
Delaney Williams
Delaney Williams
Believer #1 (uncredited)
Saemi Nakamura
Saemi Nakamura
Japanese Anchor
Thomas Reid
Thomas Reid
Senate Hearing (uncredited)
Christopher Boyer
Christopher Boyer
Scientist (uncredited)
Steven Ford
Steven Ford
Major Russell
Elaina Erika Davis
Elaina Erika Davis
Philanthropy Bureaucrat (uncredited)
Sunshine Logroño
Sunshine Logroño
Puerto Rican Taxi Driver (uncredited)
Catherine Dao
Catherine Dao
Life Support
Denise Loveday
Denise Loveday
Press Secretary (uncredited)
Vance Valencia
Vance Valencia
Senator Valencia
Tucker Smallwood
Tucker Smallwood
Mission Director
Rob Elk
Rob Elk
Pad Leader
Bernard Shaw
Bernard Shaw
Bernard Shaw
Henry Strozier
Henry Strozier
Minister
Thomas Garner
Thomas Garner
Ian Broderick
Donna Kelley
Donna Kelley
Donna Kelley
Claire Shipman
Claire Shipman
Claire Shipman
Maria Celeste Arraras
Maria Celeste Arraras
Latina Anchor
Tabitha Soren
Tabitha Soren
Tabitha Soren
Geraldo Rivera
Geraldo Rivera
Geraldo Rivera
Ian Whitcomb
Ian Whitcomb
British Anchor
Geraldine A. Ferraro
Geraldine A. Ferraro
Geraldine A. Ferraro
Ann Druyan
Ann Druyan
Ann Druyan
Michael Albala
Michael Albala
Decryption Hacker
William Jordan
William Jordan
Chairman of Joint Chiefs
Haynes Brooke
Haynes Brooke
Drumlin Aide
Dee Dee Myers
Dee Dee Myers
Dee Dee Myers
Bryant Gumbel
Bryant Gumbel
Bryant Gumbel
Mak Takano
Mak Takano
Japanese Tech #1
Valorie Armstrong
Valorie Armstrong
Woman Senator
William L. Thomas
William L. Thomas
Reporter #6
Tony Boldi
Tony Boldi
Robert Hand (uncredited)
Aixa Clemente
Aixa Clemente
President's Secretary (uncredited)
Neal Matarazzo
Neal Matarazzo
Kitz's Aide (uncredited)
Paul L. Nolan
Paul L. Nolan
Ellie's Attorney (uncredited)
Frank Silva
Frank Silva
Army Officer (uncredited)
Todd Thompson
Todd Thompson
News Reporter (uncredited)

Images

Contact Poster
Contact Poster

Detailed Information

General Information

Original Title: Contact

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Drama, Mystery,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $90,000,000.00

Revenue: $171,120,329.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/686

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

PHP com cURL

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

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

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

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