Mank (2020)

1930s Hollywood is reevaluated through the eyes of scathing social critic and alcoholic screenwriter Herman J. Mankiewicz as he races to finish the screenplay of Citizen Kane.

2020
History
Drama
6.0
/gyjYToNFFIUKUvBYFchqpptZA1F.jpg Poster

Cast

Charles Dance
Charles Dance
William Randolph Hearst
Joseph Cross
Joseph Cross
Charles Lederer
Gary Oldman
Gary Oldman
Herman Mankiewicz
Amanda Seyfried
Amanda Seyfried
Marion Davies
Anthony Molinari
Anthony Molinari
Hobo (uncredited)
Cary Christopher
Cary Christopher
Young Joseph Mankiewicz (uncredited)
Ben Mankiewicz
Ben Mankiewicz
Broadcaster, Academy Awards
Sean Donnellan
Sean Donnellan
Martin Butler
Toby Leonard Moore
Toby Leonard Moore
David O. Selznick
Paul Fox
Paul Fox
Joe Von Sternberg
Mark Fite
Mark Fite
James Wilson
Rick Pasqualone
Rick Pasqualone
Singer
Lily Collins
Lily Collins
Rita Alexander
David Lee Smith
David Lee Smith
Sinclair Supporter
Tom Pelphrey
Tom Pelphrey
Joseph Mankiewicz
Adam Shapiro
Adam Shapiro
George S. Kaufman
John Patrick Jordan
John Patrick Jordan
Best Original Screenplay Announcer
Jeff Harms
Jeff Harms
Ben Hecht
Jessie Cohen
Jessie Cohen
Norma Shearer Thalberg
Brian Michael Jones
Brian Michael Jones
Aide - Ben
Sam Troughton
Sam Troughton
John Houseman
Elvy
Elvy
Starlet #3
Flo Lawrence
Flo Lawrence
Maude Anderson
Arliss Howard
Arliss Howard
Louis B. Mayer
Stewart Skelton
Stewart Skelton
News Reel I
John Lee Ames
John Lee Ames
Grady
Leven Rambin
Leven Rambin
Eve - Shelly's Girlfriend
Natalie Denise Sperl
Natalie Denise Sperl
Movie Star #2
Tom Simmons
Tom Simmons
Doctor
Tom Burke
Tom Burke
Orson Welles
Jamie McShane
Jamie McShane
Shelly Metcalf
Mario Di Donato
Mario Di Donato
A Man's Voice (voice)
Ferdinand Kingsley
Ferdinand Kingsley
Irving Thalberg
Monika Gossmann
Monika Gossmann
Fräulein Frieda
Wylie Small
Wylie Small
Wife #2
Tuppence Middleton
Tuppence Middleton
Sara Mankiewicz
Jordan Matlock
Jordan Matlock
Groundskeeper (uncredited)
Kingston Vernes
Kingston Vernes
Young Herman Mankiewicz (uncredited)
Craig Welzbacher
Craig Welzbacher
Rexford Tugwell
Amie Farrell
Amie Farrell
Mrs. Meyer
Richmond Arquette
Richmond Arquette
Heckler
Paul Carafotes
Paul Carafotes
Assistant Director
Bill Nye
Bill Nye
Upton Sinclair
Anne Beyer
Anne Beyer
Female Party Goer
Cooper Tomlinson
Cooper Tomlinson
Younger Man
Arlo Mertz
Arlo Mertz
Child Star
Lou George
Lou George
Ed the Gate Guard
John Churchill
John Churchill
Charles MacArthur
Christian Prentice
Christian Prentice
Emcee
Randy Davison
Randy Davison
Maître D
Sean Persaud
Sean Persaud
Tommy
Julie Collis
Julie Collis
Female Starlet
Desiree Louise
Desiree Louise
Irene Selznick
Sebastian Faure
Sebastian Faure
Movie Star #1
Camille Montgomery
Camille Montgomery
Starlet #1
Keith Barber
Keith Barber
News Reel III
Kaytlin Borgen
Kaytlin Borgen
Mayer's Assistant
Madison West
Madison West
Starlet #2

Images

Mank Poster
Mank Poster

Video

teaser Oficial

MANK | Teaser oficial | Netflix

teaser Oficial

trailer Oficial

MANK | Trailer oficial | Netflix

trailer Oficial

Detailed Information

General Information

Original Title: Mank

Creators: Hwang Dong-hyuk

Gender: History, Drama,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $25,000,000.00

Revenue: $122,252.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/614560

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

PHP com cURL

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

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

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

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