The Man Who Wasnt There (2001)

A tale of murder, crime and punishment set in the summer of 1949. Ed Crane, a barber in a small California town, is dissatisfied with his life, but his wife Doris infidelity and a mysterious opportunity presents him with a chance to change it.

2001
Drama
Crime
7.0
/xcLIpjYr8qBi2qqvOWt5ekbMTof.jpg Poster

Cast

Spencer Kayden
Spencer Kayden
Piano Recital Patron (uncredited)
John Michael Higgins
John Michael Higgins
Emergency Room Physician (uncredited)
Gregg Binkley
Gregg Binkley
The New Man
Billy Bob Thornton
Billy Bob Thornton
Ed Crane
Christopher McDonald
Christopher McDonald
Macadam Salesman
Tony Shalhoub
Tony Shalhoub
Freddy Riedenschneider
James Gandolfini
James Gandolfini
Big Dave Brewster
Peter Siragusa
Peter Siragusa
Bartender
Scarlett Johansson
Scarlett Johansson
Birdy Abundas
Greg Bronson
Greg Bronson
Courtroom Attendee (uncredited)
Ted Rooney
Ted Rooney
Bingo Caller
Brian Haley
Brian Haley
Officer Krebs
Richard Jenkins
Richard Jenkins
Walter Abundas
E.J. Callahan
E.J. Callahan
Customer
Kenneth Hughes
Kenneth Hughes
Dancer
Jon Polito
Jon Polito
Creighton Tolliver
Seymour Cassel
Seymour Cassel
Spectator at Execution (uncredited)
Stanley DeSantis
Stanley DeSantis
New Man's Customer
Max Thayer
Max Thayer
Witness (uncredited)
Frances McDormand
Frances McDormand
Doris Crane
Jack McGee
Jack McGee
P.I. Burns
Brooke Smith
Brooke Smith
Sobbing Prisoner
Joan Blair
Joan Blair
Prison Matron (uncredited)
Rita Maye Bland
Rita Maye Bland
Dancer
Christopher Kriesa
Christopher Kriesa
Officer Persky
Abraham Benrubi
Abraham Benrubi
Party Man
Leonard Crofoot
Leonard Crofoot
Dancer
Jennifer Jason Leigh
Jennifer Jason Leigh
Female Inmate (voice) (uncredited)
Michael Badalucco
Michael Badalucco
Frank
Dan Martin
Dan Martin
Bailiff
Pete Schrum
Pete Schrum
Truck Driver (uncredited)
Rhoda Gemignani
Rhoda Gemignani
Costanza
Phil Hawn
Phil Hawn
Man in Courtroom (uncredited)
Rick Scarry
Rick Scarry
District Attorney
Lilyan Chauvin
Lilyan Chauvin
Medium
Gordon Hart
Gordon Hart
Dancer
Alan Fudge
Alan Fudge
Dr. Diedrickson
Adam Alexi-Malle
Adam Alexi-Malle
Jacques Carcanogues
Geoffrey Gould
Geoffrey Gould
Alpine Rope Toss Man (uncredited)
Katherine Borowitz
Katherine Borowitz
Ann Nirdlinger Brewster
Booth Colman
Booth Colman
Judge #2
Janis Jones
Janis Jones
Woman at Piano Recital (uncredited)
Craig Berenson
Craig Berenson
Jail Guy (uncredited)
Randi Cee
Randi Cee
Dancer
Cherilyn Hayres
Cherilyn Hayres
Swing Dancer (uncredited)

Images

The Man Who Wasnt There Poster
The Man Who Wasnt There Poster

Detailed Information

General Information

Original Title: The Man Who Wasnt There

Creators: Hwang Dong-hyuk

Gender: Drama, Crime,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $20,000,000.00

Revenue: $18,918,721.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/10778

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

PHP com cURL

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

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

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

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