City for Conquest (1940)

The heartbreaking but hopeful tale of Danny Kenny and Peggy Nash, two sweethearts who meet and struggle through their impoverished lives in New York City. When Peggy, hoping for something better in life for both of them, breaks off her engagement to Danny, he sets out to be a championship boxer, while she becomes a dancer paired with a sleazy partner. Will tragedy reunite the former lovers?

1940
Drama
Romance
Crime
6.0
/pwWBxZMFfgSEvi82PjR8099lcl9.jpg Poster

Cast

Charles Lane
Charles Lane
Al - Dance Team Manager (uncredited)
Joseph Crehan
Joseph Crehan
Doctor
Colin Kenny
Colin Kenny
Al's Pal (uncredited)
William H. O'Brien
William H. O'Brien
Waiter (uncredited)
Dale Van Sickel
Dale Van Sickel
Championship Fight Spectator (uncredited)
Jimmy Dime
Jimmy Dime
Gym Rat (uncredited)
Larry Steers
Larry Steers
Party Guest (uncredited)
Donald Crisp
Donald Crisp
Scotty MacPherson
Charles Sherlock
Charles Sherlock
Dance Judge (uncredited)
Scott Seaton
Scott Seaton
Concert Spectator (uncredited)
Charles Sullivan
Charles Sullivan
Dance Floor Guard #2 (uncredited)
George Tobias
George Tobias
'Pinky'
Ethelreda Leopold
Ethelreda Leopold
Irene - Dressing Room Blonde (uncredited)
Carl M. Leviness
Carl M. Leviness
Champion Fight Spectator (uncredited)
Steve Carruthers
Steve Carruthers
Nightclub Patron (uncredited)
Frank Faylen
Frank Faylen
Band Conductor and Emcee (uncredited)
Ward Bond
Ward Bond
First Policeman (uncredited)
Kit Guard
Kit Guard
Mickey Miller (uncredited)
Stephen Soldi
Stephen Soldi
Organ Grinder (uncredited)
Dick Wessel
Dick Wessel
Cab Driver by Fire (uncredited)
Sidney Miller
Sidney Miller
Band Conductor and Emcee (uncredited)
Buster Slaven
Buster Slaven
Sidney - Pupil (uncredited)
Anthony Quinn
Anthony Quinn
Murray Burns
Ann Sheridan
Ann Sheridan
Peggy Nash
Frank McHugh
Frank McHugh
'Mutt'
Pat Flaherty
Pat Flaherty
Dance Floor Guard (uncredited)
Thurston Hall
Thurston Hall
Max Leonard
Jack Mower
Jack Mower
Man Next to MacPherson at Fight (uncredited)
James Cagney
James Cagney
Danny Kenny
Frank Wilcox
Frank Wilcox
Party Guest (uncredited)
George Lloyd
George Lloyd
'Goldie'
Ben Welden
Ben Welden
Cobb
William Newell
William Newell
Max's Lyricist (uncredited)
Arthur Kennedy
Arthur Kennedy
Eddie Kenny
Leo White
Leo White
Dance Contest Observer (uncredited)
George O'Hanlon
George O'Hanlon
Newsboy (uncredited)
Wade Boteler
Wade Boteler
New York Policeman (uncredited)
Mike Lally
Mike Lally
Fight Ringsider / Party Guest (uncredited)
Lee Patrick
Lee Patrick
Gladys
Joyce Compton
Joyce Compton
Lilly
Paul Panzer
Paul Panzer
Dance Contest Observer (uncredited)
Michael Mark
Michael Mark
Tonbstone Painter (uncredited)
John Dilson
John Dilson
Mr. Cahn - Man Buying Newspaper (uncredited)
John Arledge
John Arledge
Salesman
Lee Phelps
Lee Phelps
Ring Announcer (uncredited)
Charles C. Wilson
Charles C. Wilson
Bill - Man Behind MacPherson at Fight (uncredited)
Blanche Yurka
Blanche Yurka
Mrs. Nash
Jerome Cowan
Jerome Cowan
'Dutch'
Edward Keane
Edward Keane
Gaul
Murray Alper
Murray Alper
Taxi Driver (uncredited)
Victor Kilian
Victor Kilian
Bill Poster (uncredited)
Frank Sully
Frank Sully
Radio Listener (uncredited)
Eric Mayne
Eric Mayne
Concert Spectator (uncredited)
George Humbert
George Humbert
Organ Grinder's Shill (uncredited)
Garry Owen
Garry Owen
Reporter (uncredited)
Selmer Jackson
Selmer Jackson
Doctor
Dudley Dickerson
Dudley Dickerson
Doorman (uncredited)
Thomas E. Jackson
Thomas E. Jackson
Pep - Sportswriter (uncredited)
Elliott Sullivan
Elliott Sullivan
Photographer (uncredited)
Arthur Housman
Arthur Housman
Radio Listener (uncredited)
Edward Gargan
Edward Gargan
Joe - Foreman (uncredited)
Jay Eaton
Jay Eaton
Party Guest (uncredited)
Elia Kazan
Elia Kazan
'Googi'
Billy Wayne
Billy Wayne
Happy - Googi's Henchman (uncredited)
John Sheehan
John Sheehan
Man Yelling at Ringside (uncredited)
Bob Steele
Bob Steele
Kid Callahan (uncredited)
William Phillips
William Phillips
Sailor - Sparring Partner (uncredited)
Margaret Hayes
Margaret Hayes
Sally - Irene's Friend (uncredited)
Warren Douglas
Warren Douglas
Elevator Operator (uncredited)
Sally Payne
Sally Payne
Singer (uncredited)
Sam Hayes
Sam Hayes
Sam Hayes - Radio Announcer (uncredited)
Frank Craven
Frank Craven
'Old Timer'
David Gorcey
David Gorcey
Ticket Taker (uncredited)

Images

City for Conquest Poster
City for Conquest Poster

Detailed Information

General Information

Original Title: City for Conquest

Creators: Hwang Dong-hyuk

Gender: Drama, Romance, Crime,

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

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

PHP com cURL

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

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

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

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