The War of the Worlds (1953)

The residents of a small town are excited when a flaming meteor lands in the hills, until they discover it is the first of many transport devices from Mars bringing an army of invaders invincible to any man-made weapon, even the atomic bomb.

1953
Science Fiction
Action
6.0
/3WbV9FrscqOCo7eKkUFReD8e7HV.jpg Poster

Cast

Paul Frees
Paul Frees
Second Radio Reporter / Opening Announcer
George Nardelli
George Nardelli
Military Officer (uncredited)
Chet Brandenburg
Chet Brandenburg
Man in Church (uncredited)
Herman Hack
Herman Hack
Worker Listening to Radio (uncredited)
Fred Graham
Fred Graham
Looter (uncredited)
Dale Van Sickel
Dale Van Sickel
Looter (uncredited)
Frank Kreig
Frank Kreig
Fiddler Hawkins (uncredited)
Mike Mahoney
Mike Mahoney
Townsman (uncredited)
Arthur Tovey
Arthur Tovey
Party Guest (uncredited)
Jack Kruschen
Jack Kruschen
Salvatore
Michael Jeffers
Michael Jeffers
Worker Listening to Radio (uncredited)
Dick Johnstone
Dick Johnstone
Man in Church (uncredited)
Charles Morton
Charles Morton
Worker Listening to Radio (uncredited)
James Seay
James Seay
Air Force Bomber Pilot (uncredited)
Henry Brandon
Henry Brandon
Cop at Crash Site
Ann Robinson
Ann Robinson
Sylvia Van Buren
Carolyn Jones
Carolyn Jones
Blonde Party Guest (uncredited)
Ralph Dumke
Ralph Dumke
Buck Monahan (uncredited)
Jimmie Horan
Jimmie Horan
Party Guest (uncredited)
John Maxwell
John Maxwell
Doctor (uncredited)
Dorothy Vernon
Dorothy Vernon
Elderly Woman at Square Dance (uncredited)
Cedric Hardwicke
Cedric Hardwicke
Commentary (voice)
William Phipps
William Phipps
Wash Perry
Walter Sande
Walter Sande
Sheriff Bogany (uncredited)
Russ Conway
Russ Conway
Rev. Bethany (uncredited)
Ted Hecht
Ted Hecht
KGEB Reporter (uncredited)
Lee Miller
Lee Miller
Reporter (uncredited)
Eric Alden
Eric Alden
Man (uncredited)
Nancy Hale
Nancy Hale
Young Wife (uncredited)
Herbert Lytton
Herbert Lytton
Chief of Staff (uncredited)
Gene Barry
Gene Barry
Clayton Forrester
Pierre Cressoy
Pierre Cressoy
Frenchman (uncredited)
Bob Morgan
Bob Morgan
Injured Civil Defense Worker (uncredited)
Wilbur Mack
Wilbur Mack
Official (uncredited)
Freeman Lusk
Freeman Lusk
Secretary of Defense (uncredited)
Alvy Moore
Alvy Moore
Zippy (uncredited)
Al Ferguson
Al Ferguson
Police Chief (uncredited)
Paul Birch
Paul Birch
Alonzo Hogue (uncredited)
David McMahon
David McMahon
Minister, First Church (uncredited)
Ivan Lebedeff
Ivan Lebedeff
Dr. Gratzman (uncredited)
Robert Cornthwaite
Robert Cornthwaite
Dr. Pryor
Edward Colmans
Edward Colmans
Spanish Priest (uncredited)
Les Tremayne
Les Tremayne
General Mann
Vernon Rich
Vernon Rich
Ralph Heffner
Sandro Giglio
Sandro Giglio
Dr. Bilderbeck
Ann Codee
Ann Codee
Dr. Duprey (uncredited)
Peter Adams
Peter Adams
Pine Summit Fire Watcher (uncredited)
Edgar Barrier
Edgar Barrier
Prof. McPherson (uncredited)
Russ Bender
Russ Bender
Dr. Carmichael (uncredited)
Charles Gemora
Charles Gemora
Martian (uncredited)
Ned Glass
Ned Glass
Well-Dressed Looter (uncredited)
Douglas Henderson
Douglas Henderson
Staff Sergeant (uncredited)
Gertrude Hoffmann
Gertrude Hoffmann
Elderly News Vendor (uncredited)
George Magrill
George Magrill
Traffic Cop (uncredited)
Joel Marston
Joel Marston
Military Policeman in Jeep (uncredited)
George Pal
George Pal
Bum #1 Listening to Radio (uncredited)
Robert Rockwell
Robert Rockwell
Forest Ranger at Crash Site (uncredited)
David Sharpe
David Sharpe
Looter (uncredited)
Teru Shimada
Teru Shimada
Japanese Diplomat (uncredited)
Anthony Warde
Anthony Warde
Military Police Driver (uncredited)

Images

The War of the Worlds Poster
The War of the Worlds Poster

Detailed Information

General Information

Original Title: The War of the Worlds

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Action,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $2,000,000.00

Revenue: $2,000,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/8974

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

PHP com cURL

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

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

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

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