Twilight Zone: The Movie (1983)

An anthology film presenting remakes of three episodes from the Twilight Zone TV series—Kick the Can, Its a Good Life and Nightmare at 20,000 Feet—and one original story, Time Out.

1983
Fantasy
Science Fiction
Horror
6.0
/9SbVGUGx4jnJoZAVgiRCJRdBD6e.jpg Poster

Cast

Albert Brooks
Albert Brooks
Driver
Nancy Cartwright
Nancy Cartwright
Ethel
Peter Brocco
Peter Brocco
Mr. Mute
Eddy Donno
Eddy Donno
K.K.K.
John Lithgow
John Lithgow
Valentine
Al Leong
Al Leong
Vietnamese
Kathleen Quinlan
Kathleen Quinlan
Helen Foley
Scatman Crothers
Scatman Crothers
Mr. Bloom
Priscilla Pointer
Priscilla Pointer
Miss Cox
Dan Aykroyd
Dan Aykroyd
Passenger
Dick Miller
Dick Miller
Walter Paisley
Norbert Weisser
Norbert Weisser
Soldier No. 1
Doug McGrath
Doug McGrath
Larry
William Schallert
William Schallert
Father
Steven Williams
Steven Williams
Bar Patron
William S. Taylor
William S. Taylor
G.I.
John Larroquette
John Larroquette
K.K.K.
Kai Wulff
Kai Wulff
German Officer
Charles Knapp
Charles Knapp
Sky Marshal
Charles Hallahan
Charles Hallahan
Ray
Lana Schwab
Lana Schwab
Mother
Kevin McCarthy
Kevin McCarthy
Uncle Walt
Larry Cedar
Larry Cedar
Creature
Helen Shaw
Helen Shaw
Mrs. Dempsey
Joseph Hieu
Joseph Hieu
Vietnamese
Domingo Ambriz
Domingo Ambriz
G.I.
Vic Morrow
Vic Morrow
Bill
Jeffrey Bannister
Jeffrey Bannister
Charlie
Jeffrey Weissman
Jeffrey Weissman
Young Man
Jeffrey Lampert
Jeffrey Lampert
Mechanic No. 1
Cherie Currie
Cherie Currie
Sara
Martin Garner
Martin Garner
Mr. Weinstein
Bill Mumy
Bill Mumy
Tim
Eduard Franz
Eduard Franz
Old Man
Elsa Raven
Elsa Raven
Nurse No. 2
Patricia Barry
Patricia Barry
Mother
Alan Haufrect
Alan Haufrect
Mr. Conroy's Son
Evan Richards
Evan Richards
Young Mr. Agee
Bill Quinn
Bill Quinn
Mr. Conroy
Tanya Fenmore
Tanya Fenmore
Young Mrs. Weinstein
Christina Nigra
Christina Nigra
Little Girl
Selma Diamond
Selma Diamond
Mrs. Weinstein
Thomas Byrd
Thomas Byrd
G.I.
Donna Dixon
Donna Dixon
Jr. Stewardess
Murray Matheson
Murray Matheson
Mr. Agee
Christopher Eisenmann
Christopher Eisenmann
Young Mr. Mute
Jeremy Licht
Jeremy Licht
Anthony
Abbe Lane
Abbe Lane
Sr. Stewardess
Debby Porter
Debby Porter
Waitress No. 2
Vincent J. Isaac
Vincent J. Isaac
G.I.
Carol Serling
Carol Serling
Passenger

Images

Twilight Zone: The Movie Poster
Twilight Zone: The Movie Poster

Detailed Information

General Information

Original Title: Twilight Zone: The Movie

Creators: Hwang Dong-hyuk

Gender: Fantasy, Science Fiction, Horror,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $10,000,000.00

Revenue: $29,450,920.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/15301

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

PHP com cURL

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

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

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

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