Jim Henson Idea Man (2024)

Featuring unprecedented access to Jim Hensons personal archives, filmmaker Ron Howard brings us a fascinating and insightful look at a complex man whose boundless imagination inspired the world.

2024
Documentary
7.0
/Ak6spmD2DonJRZRGyOmMWQBG0f8.jpg Poster

Cast

Dave Goelz
Dave Goelz
Self
Eric Jacobson
Eric Jacobson
Self (archive footage)
Peter Linz
Peter Linz
Self (archive footage)
David Rudman
David Rudman
Self (archive footage)
Matt Vogel
Matt Vogel
Self (archive footage)
Stephanie D'Abruzzo
Stephanie D'Abruzzo
Self (archive footage)
Martin P. Robinson
Martin P. Robinson
Self (archive footage)
John Tartaglia
John Tartaglia
Self (archive footage)
Jane Curtin
Jane Curtin
Self (archive footage)
Mark Hamill
Mark Hamill
Self (archive footage)
Richard Nixon
Richard Nixon
Self (archive footage)
Steve Martin
Steve Martin
Self (archive footage)
Laraine Newman
Laraine Newman
Self (archive footage)
Alison Bartlett
Alison Bartlett
Self (archive footage)
Julie Andrews
Julie Andrews
Self (archive footage)
Frank Meschkuleit
Frank Meschkuleit
Self (archive footage)
Kevin Clash
Kevin Clash
Self (archive footage)
Lisa Henson
Lisa Henson
Self
Michael Eisner
Michael Eisner
Self (archive footage)
Elton John
Elton John
Self (archive footage)
George Lucas
George Lucas
Self (archive footage)
Dudley Moore
Dudley Moore
Self (archive footage)
Charles Gibson
Charles Gibson
Self (archive footage)
Drew Barrymore
Drew Barrymore
Self (archive footage)
Roscoe Orman
Roscoe Orman
Self (archive footage)
Chevy Chase
Chevy Chase
Self (archive footage)
Dan Aykroyd
Dan Aykroyd
Self (archive footage)
David Bowie
David Bowie
Self (archive footage)
Dick Cavett
Dick Cavett
Self (archive footage)
Rita Moreno
Rita Moreno
Self
Jennifer Connelly
Jennifer Connelly
Self
Peter Friedman
Peter Friedman
Self (archive footage)
Alice Cooper
Alice Cooper
Self (archive footage)
Jim Henson
Jim Henson
Self (archive footage)
Frank Oz
Frank Oz
Self
Jerry Nelson
Jerry Nelson
Self (archive footage)
Richard Hunt
Richard Hunt
Self (archive footage)
Orson Welles
Orson Welles
Self (archive footage)
James Frawley
James Frawley
Self (archive footage)
Steve Whitmire
Steve Whitmire
Self (archive footage)
Cheryl Blaylock
Cheryl Blaylock
Self (archive footage)
Brian Henson
Brian Henson
Self
Cheryl Henson
Cheryl Henson
Self
Heather Henson
Heather Henson
Self
Jane Henson
Jane Henson
Self (archive footage)
John Henson
John Henson
Self (archive footage)
Jerry Juhl
Jerry Juhl
Self (archive footage)
John Belushi
John Belushi
Self (archive footage)
Johnny Carson
Johnny Carson
Self (archive footage)
Liza Minnelli
Liza Minnelli
Self (archive footage)
Garrett Morris
Garrett Morris
Self (archive footage)
Raquel Welch
Raquel Welch
Self (archive footage)
Anthony Daniels
Anthony Daniels
Self (archive footage)
David Lazer
David Lazer
Self (archive footage)
Emilio Delgado
Emilio Delgado
Self (archive footage)
Morley Safer
Morley Safer
Self (archive footage)
Bernie Brillstein
Bernie Brillstein
Self (archive footage)
Toby Froud
Toby Froud
Self (archive footage)
Rollie Krewson
Rollie Krewson
Self (archive footage)
Michael O'Donoghue
Michael O'Donoghue
Self (archive footage)
Ed Sullivan
Ed Sullivan
Self (archive footage)
Roger Moore
Roger Moore
Self (archive footage)
Elizabeth II of the United Kingdom
Elizabeth II of the United Kingdom
Self (archive footage)
Harry Belafonte
Harry Belafonte
Self (archive footage)
Diana Ross
Diana Ross
Self (archive footage)
Fran Brill
Fran Brill
Self
Stevie Wonder
Stevie Wonder
Self (archive footage)
Jimmy Dean
Jimmy Dean
Self (archive footage)
Alex Rockwell
Alex Rockwell
Self
Pam Arciero
Pam Arciero
Self (archive footage)
Carmen Osbahr
Carmen Osbahr
Self (archive footage)
Bonnie Erickson
Bonnie Erickson
Self
Michael K. Frith
Michael K. Frith
Self
Joan Ganz Cooney
Joan Ganz Cooney
Self (archive footage)
Dave Garroway
Dave Garroway
Self (archive footage)
Don Sahlin
Don Sahlin
Self (archive footage)
Jon Stone
Jon Stone
Self (archive footage)
Cass Elliot
Cass Elliot
Self (archive footage)
Bob McGrath
Bob McGrath
Self (archive footage)

Where Watch

Images

Jim Henson Idea Man Poster
Jim Henson Idea Man Poster

Detailed Information

General Information

Original Title: Jim Henson Idea Man

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

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

PHP com cURL

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

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

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

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