The Bad and the Beautiful (1952)

Told in flashback form, the film traces the rise and fall of a tough, ambitious Hollywood producer, Jonathan Shields, as seen through the eyes of various acquaintances, including a writer, James Lee Bartlow; a star, Georgia Lorrison; and a director, Fred Amiel. He is a hard-driving, ambitious man who ruthlessly uses everyone on the way to becoming one of Hollywoods top movie makers.

1952
Drama
Romance
7.0
/orvve8x5WZJ2t5oBBrelm69qNX7.jpg Poster

Cast

Dabbs Greer
Dabbs Greer
Studio Lighting Technician (uncredited)
Kathleen Freeman
Kathleen Freeman
Miss March (uncredited)
Bess Flowers
Bess Flowers
Joe's Friend at Party (uncredited)
Harold Miller
Harold Miller
Mourner (uncredited)
William H. O'Brien
William H. O'Brien
Waiter at Party (uncredited)
Kirk Douglas
Kirk Douglas
Jonathan Shields
Leo G. Carroll
Leo G. Carroll
Henry Whitfield
Walter Pidgeon
Walter Pidgeon
Harry Pebbel
Ted Jordan
Ted Jordan
Assistant Director (uncredited)
Dick Johnstone
Dick Johnstone
Mourner (uncredited)
Barry Sullivan
Barry Sullivan
Fred Amiel
Kenner G. Kemp
Kenner G. Kemp
Mourner (uncredited)
Franklyn Farnum
Franklyn Farnum
Assistant on Set (uncredited)
Francis X. Bushman
Francis X. Bushman
Eulogist (uncredited)
Peggy King
Peggy King
Singer at Party (uncredited)
Ivan Triesault
Ivan Triesault
Von Ellstein
Jeffrey Sayre
Jeffrey Sayre
Waiter (uncredited)
Gilbert Roland
Gilbert Roland
Victor "Gaucho" Ribera
Gloria Grahame
Gloria Grahame
Rosemary Bartlow
Pat O'Malley
Pat O'Malley
Man Outside the Club (uncredited)
Paul Maxey
Paul Maxey
Man Talking to Gabby Agent at the Party (uncredited)
Jay Adler
Jay Adler
Mr. Z (uncredited)
Steve Forrest
Steve Forrest
Actor in Georgia's Screen Test (uncredited)
Ben Astar
Ben Astar
Joe (Party Guest) (uncredited)
Loretta Russell
Loretta Russell
Symposium Guest (uncredited)
Harry Tyler
Harry Tyler
Man (uncredited)
Mike Lally
Mike Lally
Preview Ticket Taker (uncredited)
Wilbur Mack
Wilbur Mack
Party Guest (uncredited)
George J. Lewis
George J. Lewis
"Far Away Mountain" Test Actor #2 (uncredited)
May McAvoy
May McAvoy
Pebbel's Secretary (uncredited)
Marietta Canty
Marietta Canty
Ida (uncredited)
Reginald Simpson
Reginald Simpson
Poker Player (uncredited)
William Tannen
William Tannen
Reporter (uncredited)
Ned Glass
Ned Glass
Wardrobe Man (uncredited)
Stanley Andrews
Stanley Andrews
Sheriff (uncredited)
Barbara Billingsley
Barbara Billingsley
Evelyn Lucien (Costumer) (uncredited)
Frank Gerstle
Frank Gerstle
Gabby Agent at the Party (uncredited)
Lillian Culver
Lillian Culver
Real Estate Woman (uncredited)
Madge Blake
Madge Blake
Mrs. Rosser (uncredited)
Dick Powell
Dick Powell
James Lee Bartlow
Elaine Stewart
Elaine Stewart
Lila
Lana Turner
Lana Turner
Georgia Lorrison
Phil Dunham
Phil Dunham
Pawnbroker (uncredited)
Dorothy Patrick
Dorothy Patrick
Arlene (uncredited)
Dee Turnell
Dee Turnell
Linda Ronley (uncredited)
Louis Calhern
Louis Calhern
Georgia Lorrison's Father (voice) (uncredited)
Robert Burton
Robert Burton
McDill (uncredited)
Sandy Descher
Sandy Descher
Little Girl Screaming on "Cat Man" Set (uncredited)
William Phillips
William Phillips
Assistant Director (uncredited)
Kaaren Verne
Kaaren Verne
Rosa (uncredited)
Frank J. Scannell
Frank J. Scannell
Reporter (uncredited)
Christopher Olsen
Christopher Olsen
Amiel's Boy (uncredited)
Vanessa Brown
Vanessa Brown
Kay Amiel
Sammy White
Sammy White
Gus
Jonathan Cott
Jonathan Cott
Assistant Director (uncredited)
Paul Marion
Paul Marion
Spanish Actor in Screen Test (uncredited)

Images

The Bad and the Beautiful Poster
The Bad and the Beautiful Poster

Detailed Information

General Information

Original Title: The Bad and the Beautiful

Creators: Hwang Dong-hyuk

Gender: Drama, Romance,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $1,558,000.00

Revenue: $3,373,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/32499

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

PHP com cURL

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

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

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

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