Stay Tuned (1992)

Salesman Roy Knable spends all his free time watching television, to the exasperation of his wife, Helen. One day, TV salesman Spike convinces Roy to buy a satellite dish offering 666 channels. The new addition to Roys home entertainment system sucks him and Helen into Hellvision, a realm run by Spike, who is an emissary of Satan. For 24 hours, the couple must survive devilish parodies of TV programs if they want to return to reality alive.

1992
Fantasy
Comedy
6.0
/yd2MN9zA30eGjf89DaaNoUXbRNp.jpg Poster

Cast

John Pyper-Ferguson
John Pyper-Ferguson
Prisoner in "30 Something to Life"
Serge Houde
Serge Houde
Father in Yogi Beer Commercial
Erik King
Erik King
Pierce
Robert Wisden
Robert Wisden
Man in "3 Men and Rosemary's Baby"
Jeffrey Jones
Jeffrey Jones
Spike
Andrea Nemeth
Andrea Nemeth
Girlfriend #2
Shane Meier
Shane Meier
Son in Yogi Beer Commercial
Eugene Levy
Eugene Levy
Crowley
Don Calfa
Don Calfa
Wetzel
A.C. Peterson
A.C. Peterson
Wrestling Referee
Dave 'Squatch' Ward
Dave 'Squatch' Ward
Peasant
Dale Wilson
Dale Wilson
Guy Squirly
Michael Hogan
Michael Hogan
Duane
Victor A. Young
Victor A. Young
Handsome Guard
P. Lynn Johnson
P. Lynn Johnson
Mother in Silencer of the Lambs Commercial
Jerry Wasserman
Jerry Wasserman
Cop
Colleen Winton
Colleen Winton
Anchor Woman
David Tom
David Tom
Darryl Knable
Rebecca Toolan
Rebecca Toolan
Crying Widow
Kevin McNulty
Kevin McNulty
Prisoner in "30 Something to Life"
Faith Minton
Faith Minton
Mrs. Gorgon
Bill Croft
Bill Croft
Torpedo #1
Steve Adams
Steve Adams
Prisoner in "30 Something to Life"
Gerry Nairn
Gerry Nairn
Newscaster
John Destry
John Destry
Sackler
David Longworth
David Longworth
Another Peasant
Bob Dishy
Bob Dishy
Murray Seidenbaum
Joe Norman Shaw
Joe Norman Shaw
Prisoner in "30 Something to Life"
Gianni Russo
Gianni Russo
Guido
Heather McComb
Heather McComb
Diane Knable
Ken Kramer
Ken Kramer
Innkeeper
John Ritter
John Ritter
Roy Knable
Kim Restell
Kim Restell
Instructor
Gene Davis
Gene Davis
Frankensteinfeld
John 'Bear' Curtis
John 'Bear' Curtis
Torpedo #2
Susan Blommaert
Susan Blommaert
Ducker
Todd Duckworth
Todd Duckworth
Man in "3 Men and Rosemary's Baby"
Kristen Cloke
Kristen Cloke
Velma
Laura Harris
Laura Harris
Girlfriend #1
Pam Dawber
Pam Dawber
Helen Knable
Sandra 'Pepa' Denton
Sandra 'Pepa' Denton
Band Member in "Start Me Up" Music Video
Don Pardo
Don Pardo
Game Show Announcer
Deidra Roper
Deidra Roper
Band Member in "Start Me Up" Music Video
Cheryl 'Salt' James
Cheryl 'Salt' James
Band Member in "Start Me Up" Music Video
Louis Albano
Louis Albano
Ring Announcer
Terry Lewis
Terry Lewis
Max Hell Man

Images

Stay Tuned Poster
Stay Tuned Poster

Detailed Information

General Information

Original Title: Stay Tuned

Creators: Hwang Dong-hyuk

Gender: Fantasy, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $25,000,000.00

Revenue: $10,736,401.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/23939

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

PHP com cURL

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

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

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

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