Death to Smoochy (2002)

Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular childrens TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuchsia rhinoceros. As Smoochy catapults to fame - scoring hit ratings and the affections of a network executive - Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as Americas sweetheart.

2002
Drama
Crime
Comedy
Thriller
5.0
/7N5yym7yZ4EDCsmCaAOQqcdEViP.jpg Poster

Cast

Robin Williams
Robin Williams
Rainbow Randolph
James Binkley
James Binkley
Cop #1
Craig Eldridge
Craig Eldridge
Husband
Tracey Walter
Tracey Walter
Ben Franks
David Lawrence Brown
David Lawrence Brown
McCall
Dan Duran
Dan Duran
Hunter
Danny DeVito
Danny DeVito
Burke Bennett
Vincent Schiavelli
Vincent Schiavelli
Buggy Ding Dong
Edward Norton
Edward Norton
Sheldon Mopes / Smoochy
Gerry Quigley
Gerry Quigley
Ian
Philip Craig
Philip Craig
Senator
Vito Rezza
Vito Rezza
Lead Cop
Bruce McFee
Bruce McFee
Roy
Jon Stewart
Jon Stewart
Marion Frank Stokes
Rothaford Gray
Rothaford Gray
Ellis
Pam Ferris
Pam Ferris
Tommy Cotter
Edie Inksetter
Edie Inksetter
Molly (uncredited)
Catherine Keener
Catherine Keener
Nora Wells
Michael Copeman
Michael Copeman
Reporter #1
Frank Anello
Frank Anello
NYPD
Danny Woodburn
Danny Woodburn
Angelo Pike
Martin Klebba
Martin Klebba
Rhinette/Krinkle #3
Louis Giambalvo
Louis Giambalvo
Sonny Gordon
Richard Hamilton
Richard Hamilton
Old Vagrant
Michael Rispoli
Michael Rispoli
Spinner Dunn
Todd Graff
Todd Graff
Skip Kleinman
Peter Keleghan
Peter Keleghan
News Anchor
Katie Finneran
Katie Finneran
Woman in Crowd (uncredited)
Phillip Jarrett
Phillip Jarrett
Reporter #3
Christy McGinity Gibel
Christy McGinity Gibel
Rhinette / Krinkle Kid #5
Bill Lake
Bill Lake
Bartender
Richard Ziman
Richard Ziman
Man in Crowd #3
Angela Bullock
Angela Bullock
Reporter #6
Harvey Fierstein
Harvey Fierstein
Merv Green
Matthew Arkin
Matthew Arkin
Save The Rhino Man
George Blumenthal
George Blumenthal
Reporter #8
Peter Loung
Peter Loung
Blue (uncredited)
Dylan Roberts
Dylan Roberts
Stagehand
James Carroll
James Carroll
Reporter #2
John 'Cha Cha' Ciarcia
John 'Cha Cha' Ciarcia
Autograph Man
Tonya Reneé Banks
Tonya Reneé Banks
Rhinette / Krinkle Kid #4
Melissa DiMarco
Melissa DiMarco
Tara
Danny LeGare
Danny LeGare
Newsstand Clerk (uncredited)
Robert Mauzell
Robert Mauzell
Security Guard at Methadone Clinic (uncredited)

Images

Death to Smoochy Poster
Death to Smoochy Poster

Detailed Information

General Information

Original Title: Death to Smoochy

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Comedy, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $55,000,000.00

Revenue: $8,400,000.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/9275

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

PHP com cURL

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

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

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

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