Tower of London (1939)

In the 15th century Richard Duke of Gloucester, aided by his club-footed executioner Mord, eliminates those ahead of him in succession to the throne, then occupied by his brother King Edward IV of England. As each murder is accomplished he takes particular delight in removing small figurines, each resembling one of the successors, from a throne-room dollhouse, until he alone remains. After the death of Edward he becomes Richard III, King of England, and need only defeat the exiled Henry Tudor to retain power.

1939
History
Drama
Horror
6.0
/glEWt92HOIq7uUoyMyO3JWyzH6K.jpg Poster

Cast

Colin Kenny
Colin Kenny
Soldier
Leo G. Carroll
Leo G. Carroll
Lord Hastings
Miles Mander
Miles Mander
King Henry VI
John George
John George
Spy (uncredited)
Frank Hagney
Frank Hagney
Soldier (uncredited)
Georgia Caine
Georgia Caine
Dowager
Richard Alexander
Richard Alexander
2nd Gate Guard Greeting Tom Clink (uncredited)
Ernie Adams
Ernie Adams
Thirsty Prisoner (uncredited)
Vincent Price
Vincent Price
Duke of Clarence
George Lloyd
George Lloyd
Moat Guard
Harry Cording
Harry Cording
Lead Murderer of the Children
Martin Faust
Martin Faust
Dighton (uncredited)
Lionel Belmore
Lionel Belmore
Beacon - a Chamberlain
Stanley Blystone
Stanley Blystone
First Gate Guard Greeting Tom Clink (uncredited)
Murdock MacQuarrie
Murdock MacQuarrie
Councilman (uncredited)
Russ Powell
Russ Powell
Sexton
Donnie Dunagan
Donnie Dunagan
Baby Prince
Robert Greig
Robert Greig
Friar Cautioning John Wyatt (uncredited)
Michael Mark
Michael Mark
Henry VI's Servant
Boris Karloff
Boris Karloff
Mord
Al Ferguson
Al Ferguson
Cleric (uncredited)
Barbara O'Neil
Barbara O'Neil
Queen Elyzabeth
James Pier Mason
James Pier Mason
Beggar
Holmes Herbert
Holmes Herbert
Councilman (uncredited)
Evelyn Selbie
Evelyn Selbie
Beggar Woman
Basil Rathbone
Basil Rathbone
Richard - Duke of Gloucester
Caroline Frances Cooke
Caroline Frances Cooke
Woman (uncredited)
Ivan F. Simpson
Ivan F. Simpson
Anne's Protector
C. Montague Shaw
C. Montague Shaw
Majordomo (uncredited)
Ed Brady
Ed Brady
Beggar (uncredited)
Ted Billings
Ted Billings
Beggar (uncredited)
Reginald Barlow
Reginald Barlow
Sherriff (uncredited)
Ian Hunter
Ian Hunter
King Edward IV
Ralph Forbes
Ralph Forbes
Henry Tudor
John Sutton
John Sutton
John Wyatt
Nigel De Brulier
Nigel De Brulier
Archbishop at St. John's Chapel (uncredited)
G.P. Huntley
G.P. Huntley
Wales
Frances Robinson
Frances Robinson
Duchess Isobel
Jean Fenwick
Jean Fenwick
Lady in Waiting (uncredited)
Ernest Cossart
Ernest Cossart
Tom Clink
Louise Brien
Louise Brien
Lady in Waiting
Donald Stuart
Donald Stuart
Torturer Bunch
Walter Tetley
Walter Tetley
Chimney Sweep
Ann E. Todd
Ann E. Todd
Princess (uncredited)
Rose Hobart
Rose Hobart
Anne Neville
Joan Carroll
Joan Carroll
Lady Mowbray (uncredited)
Nan Grey
Nan Grey
Lady Alice Barton
Sibyl Harris
Sibyl Harris
Woman
Ronald Sinclair
Ronald Sinclair
Boy King Edward

Images

Tower of London Poster
Tower of London Poster

Detailed Information

General Information

Original Title: Tower of London

Creators: Hwang Dong-hyuk

Gender: History, Drama, Horror,

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

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

PHP com cURL

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

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

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

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