Howard (2018)

Though legendary lyricist Howard Ashman died far too young, his impact on Broadway, movies, and the culture at large were incalculable. Told entirely through rare archival footage and interviews with Ashmans family, friends, associates, and longtime partner Bill Lauch, Howard is an intimate tribute to a once-in-a-generation talent and a rousing celebration of musical storytelling itself.

2018
Music
Documentary
6.0
/lvvkP7LzOaqugf4TpQ74gCnJTHN.jpg Poster

Cast

Danny Glover
Danny Glover
Self (archive footage)
Steve Martin
Steve Martin
Orin Scrivello, DDS (archive footage)
Rick Moranis
Rick Moranis
Seymour Krelborn (archive footage)
Don Hahn
Don Hahn
Self
Roy Edward Disney
Roy Edward Disney
Self (archive footage)
Jeffrey Katzenberg
Jeffrey Katzenberg
Self
Rob Minkoff
Rob Minkoff
Self
Glen Keane
Glen Keane
Self
Ron Clements
Ron Clements
Self (archive footage)
John Musker
John Musker
Himself (archive footage)
Mike Gabriel
Mike Gabriel
Self (voice) (archive footage)
Roger Allers
Roger Allers
Self
Gary Trousdale
Gary Trousdale
Self
Kirk Wise
Kirk Wise
Self (archive footage)
Thomas Schumacher
Thomas Schumacher
Self
Walt Disney
Walt Disney
Self (archive footage)
Diane Sawyer
Diane Sawyer
Self (archive footage)
Roger Ebert
Roger Ebert
Self (archive footage)
Paula Abdul
Paula Abdul
Self (archive footage)
Dudley Moore
Dudley Moore
Self (archive footage)
Jerry Orbach
Jerry Orbach
Self / Lumiere (archive footage)
Angela Lansbury
Angela Lansbury
Self / Mrs. Potts (archive footage)
Howard Ashman
Howard Ashman
Self / Various Character Scratch Singing (archive footage)
Alan Menken
Alan Menken
Self / Various Character Scratch Singing
Jodi Benson
Jodi Benson
Self / Ariel (voice) / Doria Hudson
Pat Carroll
Pat Carroll
Self (archive footage)
Colleen Camp
Colleen Camp
Connie (archive footage)
Tichina Arnold
Tichina Arnold
Crystal (archive footage)
Tisha Campbell
Tisha Campbell
Chiffon (archive footage)
Will Smith
Will Smith
Genie / Mariner (archive footage)
Douglas Seale
Douglas Seale
The Sultan (archive footage)
Dan Stevens
Dan Stevens
Beast (archive footage)
James Monroe Iglehart
James Monroe Iglehart
Genie (archive footage)
Emma Watson
Emma Watson
Belle (archive footage)
Vincent Gardenia
Vincent Gardenia
Mr. Mushnik (archive footage)
Frank Oz
Frank Oz
Self (archive footage)
Bob Hope
Bob Hope
Orville 'Turkey' Jackson (archive footage)
Melanie Griffith
Melanie Griffith
Karen (archive footage)
Frederick Coffin
Frederick Coffin
Eliot Rosewater (archive footage)
Annette O'Toole
Annette O'Toole
Doria (archive footage)
Dan Rather
Dan Rather
Self (archive footage)
Richard White
Richard White
Self (archive footage)
Kurt Vonnegut
Kurt Vonnegut
Self (archive footage)
Natalie Wood
Natalie Wood
Maria (archive footage)
Mena Massoud
Mena Massoud
Aladdin (archive footage)
Phil Spector
Phil Spector
Self (archive footage)
Bing Crosby
Bing Crosby
Jeff Peters (archive footage)
Ellen Greene
Ellen Greene
Self / Audrey (archive footage)
Paige O'Hara
Paige O'Hara
Self / Belle (archive footage)
Denise Nickerson
Denise Nickerson
Shirley (archive footage)
Ronnie Spector
Ronnie Spector
Self (archive footage)
Richard Beymer
Richard Beymer
Tony (archive footage)
Dale Branston
Dale Branston
Baker (archive footage)
Jonathan Hadary
Jonathan Hadary
Norman Mushari (archive footage)
Anne Bobby
Anne Bobby
Robin Gibson (archive footage)
Marvin Hamlisch
Marvin Hamlisch
Self (archive footage)
Divine
Divine
Dawn Davenport / Earl Peterson (archive footage)
Jonathan Haze
Jonathan Haze
Seymour Krelborn (archive footage)
Charles B. Griffith
Charles B. Griffith
Audrey Junior (voice) / Screaming Patient (archive footage)
Leola Wendorff
Leola Wendorff
Siddie Shiva (archive footage)
Mel Welles
Mel Welles
Gravis Mushnick (archive footage)
Michelle Weeks
Michelle Weeks
Ronnette (archive footage)
Levi Stubbs
Levi Stubbs
Audrey II (voice) (archive footage)
Larry Kramer
Larry Kramer
Self (archive footage)
David Geffen
David Geffen
Self (archive footage)
Fats Waller
Fats Waller
Self (archive footage)
Benny Carter
Benny Carter
Trumpeter (archive footage)
Adam Jacobs
Adam Jacobs
Aladdin (archive footage)
Joan Prather
Joan Prather
Robin (archive footage)

Where Watch

Images

Howard Poster
Howard Poster

Detailed Information

General Information

Original Title: Howard

Creators: Hwang Dong-hyuk

Gender: Music, 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/512191

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

PHP com cURL

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

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

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

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