John Candy: I Like Me (2025)

Those who knew iconic funnyman John Candy best share his story, in their own words, through never-before-seen archival footage, imagery, and interviews.

2025
Documentary
7.0
/byA093FCWhZAjEw711lyOjHIjHh.jpg Poster

Cast

Steve Martin
Steve Martin
Self - Actor, 'Planes, Trains and Automobiles'
Rick Moranis
Rick Moranis
Self - Actor SCTV (archive footage)
Steven Spielberg
Steven Spielberg
Self - Director, 1941 (archive footage)
Roger Ebert
Roger Ebert
Self - Film Critic (archive footage)
Tom Hanks
Tom Hanks
Self - Actor, Splash
Judge Reinhold
Judge Reinhold
Self - Actor, Stripes (archive footage)
David Letterman
David Letterman
Self - Host, Late Night with David Letterman (archive footage)
Catherine O'Hara
Catherine O'Hara
Self - Actor, SCTV
Eugene Levy
Eugene Levy
Self - Actor, SCTV
Sydney Pollack
Sydney Pollack
Self - Director (archive footage)
Kevin Costner
Kevin Costner
Self - Actor (archive footage)
Eddie Murphy
Eddie Murphy
Self - Actor, Saturday Night Live (archive footage)
Bill Murray
Bill Murray
Self - Mainstage Cast, The Second City
Ron Howard
Ron Howard
Self - Director, Splash (archive footage)
Macaulay Culkin
Macaulay Culkin
Self - Actor, Uncle Buck
Richard Pryor
Richard Pryor
Self - Actor (archive footage)
Dave Thomas
Dave Thomas
Self - Actor, SCTV
Chevy Chase
Chevy Chase
Self - Actor, National Lampoon's Vacation (archive footage)
Mel Brooks
Mel Brooks
Self - Director, Spaceballs
Conan O'Brien
Conan O'Brien
Self - Comedian & Podcast Host
Dan Aykroyd
Dan Aykroyd
Self - Mainstage Cast, The Second City
Dick Cavett
Dick Cavett
Self - Host, The Dick Cavett Show (archive footage)
Victor Garber
Victor Garber
Self - Actor (archive footage)
Charlie Chaplin
Charlie Chaplin
Self - Actor (archive footage)
Andrea Martin
Andrea Martin
Self - Actor, SCTV
John Chancellor
John Chancellor
Self - Host, NBC Nightly News (archive footage)
Ernie Hudson
Ernie Hudson
Self - Actor (archive footage)
Don Lake
Don Lake
Self - Actor, Wagons East
Peter Mansbridge
Peter Mansbridge
Self - News Anchor (archive footage)
John Diehl
John Diehl
Self - Actor, Stripes (archive footage)
Chris Columbus
Chris Columbus
Self - Director, Home Alone
Martin Short
Martin Short
Self - Actor, SCTV
Ray Liotta
Ray Liotta
Self - Actor (archive footage)
John Belushi
John Belushi
Self - Actor, Saturday Night Live (archive footage)
John Candy
John Candy
Self (archive footage)
Joe Flaherty
Joe Flaherty
Self - Actor, SCTV (archive footage)
Robin Duke
Robin Duke
Self - Actor, SCTV
Andrew Alexander
Andrew Alexander
Self - Founder, The Second City Toronto
Kareem Abdul-Jabbar
Kareem Abdul-Jabbar
Self (archive footage)
Valri Bromfield
Valri Bromfield
Self - Actor (archive footage)
Johnny Carson
Johnny Carson
Self - Host, The Tonight Show Starring Johnny Carson (archive footage)
Bob Dylan
Bob Dylan
Self - Singer (archive footage)
Jackie Gleason
Jackie Gleason
Self - Actor (archive footage)
Wayne Gretzky
Wayne Gretzky
Self - Co-Owner of the Toronto Argonauts (archive footage)
Daryl Hall
Daryl Hall
Self - Singer (archive footage)
John Hughes
John Hughes
Self - Writer, Director & Producer (archive footage)
Larry King
Larry King
Self - Host, Larry King Live (archive footage)
Jack Nicholson
Jack Nicholson
Self - Actor (archive footage)
Maureen O'Hara
Maureen O'Hara
Self (archive footage)
John Oates
John Oates
Self - Singer (archive footage)
Joe Piscopo
Joe Piscopo
Self - Actor, Saturday Nigh Live (archive footage)
Harold Ramis
Harold Ramis
Self - Head Writer & Actor, SCTV (archive footage)
Carl Reiner
Carl Reiner
Self - Director, Summer Rental (archive footage)
Peter Sellers
Peter Sellers
Self - Actor (archive footage)
Betty Thomas
Betty Thomas
Self - Actor (archive footage)

Images

John Candy: I Like Me Poster
John Candy: I Like Me Poster

Detailed Information

General Information

Original Title: John Candy: I Like Me

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/1492608

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

PHP com cURL

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

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

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

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