The Lost Weekend (1945)

Longtime alcoholic Don Birnam has been sober for ten days and appears to be over the worst... but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last – one way or another.

1945
Drama
7.0
/3rXzGi1BqzSPMeIjvu8WxXDQGLa.jpg Poster

Cast

Earle Hyman
Earle Hyman
Smoking Man (uncredited)
Max Wagner
Max Wagner
Mike (uncredited)
Douglas Spencer
Douglas Spencer
Hospital Patient Seeing Imaginary Beetles (uncredited)
Harry Wilson
Harry Wilson
Drunk (uncredited)
Amzie Strickland
Amzie Strickland
Woman in Bar (uncredited)
Franklyn Farnum
Franklyn Farnum
Concert Attendee (uncredited)
Emmett Vogan
Emmett Vogan
Doctor (uncredited)
Frank Faylen
Frank Faylen
'Bim' Nolan
John Deauville
John Deauville
Cloakroom Attendant (uncredited)
Mary Young
Mary Young
Mrs. Deveridge
Frank Mills
Frank Mills
Drunk in Alcoholic Ward (uncredited)
Fred 'Snowflake' Toones
Fred 'Snowflake' Toones
Washroom Attendant at Harry & Joe's (uncredited)
Byron Foulger
Byron Foulger
Shopkeeper (uncredited)
William Newell
William Newell
Liquor Store Proprietor (uncredited)
Ray Milland
Ray Milland
Don Birnam
Ted Hecht
Ted Hecht
Man with Bandaged Ear (uncredited)
Walter Baldwin
Walter Baldwin
Man from Albany (uncredited)
Howard Da Silva
Howard Da Silva
Nat the Bartender
James Millican
James Millican
Nurse (uncredited)
Lee Shumway
Lee Shumway
Guard (uncredited)
Lester Sharpe
Lester Sharpe
Jewish Man (uncredited)
Doris Dowling
Doris Dowling
Gloria
Ernest Whitman
Ernest Whitman
Black Man Talking to Himself (uncredited)
Harry Tenbrook
Harry Tenbrook
Drunk in Alcoholic Ward (uncredited)
Ernest Hilliard
Ernest Hilliard
Headwaiter (uncredited)
Frank Orth
Frank Orth
Opera Cloak Room Attendant
Bertram Marburgh
Bertram Marburgh
Jewish Man (uncredited)
Jane Wyman
Jane Wyman
Helen St. James
Jayne Hazard
Jayne Hazard
M. (uncredited)
Stanley Price
Stanley Price
Fruit Clerk (uncredited)
David Clyde
David Clyde
Dave (uncredited)
Phillip Terry
Phillip Terry
Wick Birnam
Harry Barris
Harry Barris
Pianist at Harry & Joe's (uncredited)
Anita Sharp-Bolster
Anita Sharp-Bolster
Mrs. Foley
Jack Rube Clifford
Jack Rube Clifford
Guard (uncredited)
Crane Whitley
Crane Whitley
Waiter at Harry & Joe's Bar (uncredited)
Craig Reynolds
Craig Reynolds
George (uncredited)
Lilian Fontaine
Lilian Fontaine
Mrs. Charles St. James
Eddie Laughton
Eddie Laughton
Mr. Brophy (uncredited)
Jack W. Johnston
Jack W. Johnston
Nightclub Guest (uncredited)
Lewis L. Russell
Lewis L. Russell
Charles St. James
Karl 'Karchy' Kosiczky
Karl 'Karchy' Kosiczky
Baby (uncredited)

Images

The Lost Weekend Poster
The Lost Weekend Poster

Detailed Information

General Information

Original Title: The Lost Weekend

Creators: Hwang Dong-hyuk

Gender: Drama,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $1,250,000.00

Revenue: $11,000,000.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/28580

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

PHP com cURL

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

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

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

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