Blossoms in the Dust (1941)

Edna marries Texan Sam Gladney, operator of a wheat mill. They have a son, who is killed when very young. Edna discovers by chance how the law treats children who are without parents and decides to do something about it. She opens a home for foundlings and orphans and begins to place children in good homes, despite the opposition of conservative citizens, who would condemn illegitimate children for being born out of wedlock. Eventually Edna leads a fight in the Texas legislature to remove the stigma of illegitimacy from birth records in that state, while continuing to be an advocate for homeless children.

1941
Drama
Romance
6.0
/qKfQuCvpHpmyywk0hgqtbHyHfN2.jpg Poster

Cast

Walter Pidgeon
Walter Pidgeon
Sam Gladney
Marc Lawrence
Marc Lawrence
Bert La Verne
Will Wright
Will Wright
Senator
Emory Parnell
Emory Parnell
Senator
Emmett Vogan
Emmett Vogan
Joshua Bedlow
Frank McLure
Frank McLure
Senate Gallery Spectator
Frank Faylen
Frank Faylen
Man with Man Carrying Dead Child
Greer Garson
Greer Garson
Edna Gladney
Marsha Hunt
Marsha Hunt
Charlotte
Henry O'Neill
Henry O'Neill
Judge
Edwin Maxwell
Edwin Maxwell
City Councilman
Cy Kendall
Cy Kendall
Harrington
Almira Sessions
Almira Sessions
Mrs. Brown
Theresa Harris
Theresa Harris
Cleo
Claire Du Brey
Claire Du Brey
Nurse at Sammy's Birth
Edith Evanson
Edith Evanson
Hilda
Edward Fielding
Edward Fielding
Judge
Samuel S. Hinds
Samuel S. Hinds
Mr. George Kahley
Howard Hickman
Howard Hickman
Senator
Carroll Nye
Carroll Nye
Mr. Loring
William Henry
William Henry
Allan Keats
Harry Hayden
Harry Hayden
Senator
Selmer Jackson
Selmer Jackson
Senator
John Eldredge
John Eldredge
Damon McPherson
Cecil Cunningham
Cecil Cunningham
Mrs. Marcus Gilworth
Fay Holden
Fay Holden
Mrs. Catherine Kahly
Kathleen Howard
Kathleen Howard
Mrs. Sarah Keats
Charles Arnt
Charles Arnt
G. Harrington Hedger
Felix Bressart
Felix Bressart
Dr. Max Breslar
Douglas Wood
Douglas Wood
Senator
Oscar O'Shea
Oscar O'Shea
Dr. West
George Lessey
George Lessey
Mr. Keats
Clarence Kolb
Clarence Kolb
Senator
Clinton Rosemond
Clinton Rosemond
Zeke
Mary Taylor
Mary Taylor
Helen

Images

Blossoms in the Dust Poster
Blossoms in the Dust Poster

Detailed Information

General Information

Original Title: Blossoms in the Dust

Creators: Hwang Dong-hyuk

Gender: Drama, Romance,

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/84087

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

PHP com cURL

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

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

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

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