Misery Loves Comedy (2015)

Do you have to be miserable to be funny? More than sixty comedians—including stand-ups, writers, actors, and directors from the US, Canada, and abroad—take on this question, sharing anecdotes and insights with lively enthusiasm.

2015
Documentary
Comedy
6.0
/wjYla0vnZ3HtzAS6JxINNrZ3wY5.jpg Poster

Cast

Kumail Nanjiani
Kumail Nanjiani
Self
Samm Levine
Samm Levine
Self
Jemaine Clement
Jemaine Clement
Self
Marc Maron
Marc Maron
Self
Larry Miller
Larry Miller
Self
Laraine Newman
Laraine Newman
Self
Bobby Cannavale
Bobby Cannavale
Self
Penn Jillette
Penn Jillette
Self
Stephen Merchant
Stephen Merchant
Self
Kevin Smith
Kevin Smith
Self
Kevin Pollak
Kevin Pollak
Self
Jason Alexander
Jason Alexander
Self
Jim Gaffigan
Jim Gaffigan
Self
Rob Delaney
Rob Delaney
Self
Matt Walsh
Matt Walsh
Self
David Koechner
David Koechner
Self
Bobby Slayton
Bobby Slayton
Self
Christopher Guest
Christopher Guest
Self
Jim Norton
Jim Norton
Self
Paul Feig
Paul Feig
Self
Freddie Prinze Jr.
Freddie Prinze Jr.
Self
Dave Thomas
Dave Thomas
Self
Lewis Black
Lewis Black
Self
Whoopi Goldberg
Whoopi Goldberg
Self
Robert Smigel
Robert Smigel
Self
Michael Ian Black
Michael Ian Black
Self
Judd Apatow
Judd Apatow
Self
Amy Schumer
Amy Schumer
Self
Dana Gould
Dana Gould
Self
Jon Favreau
Jon Favreau
Self
Joe Lo Truglio
Joe Lo Truglio
Self
Wayne Federman
Wayne Federman
Self
Jimmy Fallon
Jimmy Fallon
Self
Janeane Garofalo
Janeane Garofalo
Self
Nick Swardson
Nick Swardson
Self
Jeremy Hotz
Jeremy Hotz
Self
Steve Coogan
Steve Coogan
Self
Chris Hardwick
Chris Hardwick
Self
Martin Short
Martin Short
Self
Maria Bamford
Maria Bamford
Self
Michael Showalter
Michael Showalter
Self
Richard Kind
Richard Kind
Self
Jim Jefferies
Jim Jefferies
Self
Matthew Perry
Matthew Perry
Self
David Wain
David Wain
Self
Greg Proops
Greg Proops
Self
Mike Birbiglia
Mike Birbiglia
Self
Jake Johannsen
Jake Johannsen
Self
Scott Aukerman
Scott Aukerman
Self
Kevin Nealon
Kevin Nealon
Self
Andy Richter
Andy Richter
Self
Todd Glass
Todd Glass
Self
James L. Brooks
James L. Brooks
Self
Dov Davidoff
Dov Davidoff
Self
Jason Reitman
Jason Reitman
Self
Paul F. Tompkins
Paul F. Tompkins
Self
Andy Kindler
Andy Kindler
Self
Bob Saget
Bob Saget
Self
Jimmy Pardo
Jimmy Pardo
Self
Richard Lewis
Richard Lewis
Self
Kathleen Madigan
Kathleen Madigan
Self
Alan Zweibel
Alan Zweibel
Self
Bret Ernst
Bret Ernst
Self
Gregg Hughes
Gregg Hughes
Self
Eddie Brill
Eddie Brill
Self
Nick Griffin
Nick Griffin
Self

Images

Misery Loves Comedy Poster
Misery Loves Comedy Poster

Detailed Information

General Information

Original Title: Misery Loves Comedy

Creators: Hwang Dong-hyuk

Gender: Documentary, Comedy,

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

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

PHP com cURL

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

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

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

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