Singin in the Rain (1952)

In 1927 Hollywood, a silent film star falls for a chorus girl just as he and his paranoid screen partner struggle to make the difficult transition to talking pictures.

1952
Romance
Comedy
8.0
/tLUOxyl1myKTQGMTCnuA9RRArHS.jpg Poster

Cast

Debbie Reynolds
Debbie Reynolds
Kathy Selden
Kathleen Freeman
Kathleen Freeman
Phoebe Dinsmore (uncredited)
Bess Flowers
Bess Flowers
Audience Member (uncredited)
Chet Brandenburg
Chet Brandenburg
Film Crew Member (uncredited)
Rita Moreno
Rita Moreno
Zelda Zanders
William Schallert
William Schallert
Messenger on Screen (uncredited)
Kay Deslys
Kay Deslys
Audience Member (uncredited)
Tommy Farrell
Tommy Farrell
Sid Phillips (uncredited)
Leota Lorraine
Leota Lorraine
Film Crew Member (uncredited)
Cosmo Sardo
Cosmo Sardo
Party Guest (uncredited)
Douglas Fowley
Douglas Fowley
Roscoe Dexter
John George
John George
Audience Member (uncredited)
Sylvia Lewis
Sylvia Lewis
Female Tango Dancer (uncredited)
Charles Evans
Charles Evans
Audience Member (uncredited)
Ann McCrea
Ann McCrea
Chorus Girl (uncredited)
Kenner G. Kemp
Kenner G. Kemp
Police Escort at Premiere (uncredited)
King Donovan
King Donovan
Rod (uncredited)
Robert B. Williams
Robert B. Williams
Policeman (uncredited)
Stuart Holmes
Stuart Holmes
J. Cumberland Spendrill III (uncredited)
Robert Foulk
Robert Foulk
Matt (uncredited)
Cyd Charisse
Cyd Charisse
Dancer
Gloria Dea
Gloria Dea
Chorus Girl (uncredited)
Paul Maxey
Paul Maxey
Dancing Fat Man at Party (uncredited)
Mae Clarke
Mae Clarke
Hairdresser (uncredited)
Mike Lally
Mike Lally
Audience Member (uncredited)
Forbes Murray
Forbes Murray
Club Patron (uncredited)
Robert Fortier
Robert Fortier
Gangster in Broadway Melody Ballet (uncredited)
Donald O'Connor
Donald O'Connor
Cosmo Brown
Dawn Addams
Dawn Addams
Teresa (uncredited)
Gene Kelly
Gene Kelly
Don Lockwood
Philo McCullough
Philo McCullough
Audience Member (uncredited)
Helen Eby-Rock
Helen Eby-Rock
Audience Member (uncredited)
Joseph Mell
Joseph Mell
Projectionist (uncredited)
Harry 'Snub' Pollard
Harry 'Snub' Pollard
Old Man Getting Umbrella (uncredited)
Pat Conway
Pat Conway
Projectionist (uncredited)
Bobby Watson
Bobby Watson
Diction Coach (uncredited)
David Sharpe
David Sharpe
Fencer (uncredited)
Julius Tannen
Julius Tannen
Man in Talking Pictures Demonstration (uncredited)
Harry Tenbrook
Harry Tenbrook
Sound Technician (uncredited)
Gail Bonney
Gail Bonney
Audience Member (uncredited)
Lance Fuller
Lance Fuller
Chorus Boy (uncredited)
Leon Lontoc
Leon Lontoc
Filipino Butler (uncredited)
Madge Blake
Madge Blake
Dora Bailey (uncredited)
Jean Hagen
Jean Hagen
Lina Lamont
Millard Mitchell
Millard Mitchell
R.F. Simpson
Joi Lansing
Joi Lansing
Chorus Girl (uncredited)
Elaine Stewart
Elaine Stewart
Lady-in-Waiting (uncredited)
Lana Turner
Lana Turner
Actress in The Royal Rascal (uncredited)
Barbara Carroll
Barbara Carroll
Miss February (uncredited)
Dorinda Clifton
Dorinda Clifton
Miss August (uncredited)
Phil Dunham
Phil Dunham
Audience Member (uncredited)
Beatrice Gray
Beatrice Gray
Audience Member (uncredited)
Judy Landon
Judy Landon
Olga Mara (uncredited)
Ray McDonald
Ray McDonald
Dancer (uncredited)
Carl Milletaire
Carl Milletaire
Villain (uncredited)
Anne Neyland
Anne Neyland
Chorus Girl (uncredited)
Dorothy Patrick
Dorothy Patrick
Usherette (uncredited)
Dee Turnell
Dee Turnell
Miss July (uncredited)

Images

Singin in the Rain Poster
Singin in the Rain Poster

Detailed Information

General Information

Original Title: Singin in the Rain

Creators: Hwang Dong-hyuk

Gender: Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $2,540,800.00

Revenue: $7,200,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/872

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

PHP com cURL

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

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

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

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