Earthquake (1974)

Various interconnected people struggle to survive when an earthquake of unimaginable magnitude hits Los Angeles, California.

1974
Drama
Action
Thriller
6.0
/xQDikp5WAUu9UqSTfCTL0RvGBJd.jpg Poster

Cast

George Kennedy
George Kennedy
Sgt. Lew Slade
Stuart Nisbet
Stuart Nisbet
Man on Loudspeaker (voice) (uncredited)
Bob Harks
Bob Harks
Man Fleeing Movie Theatre (uncredited)
Pedro Armendáriz Jr.
Pedro Armendáriz Jr.
Chavez
Kenny Endoso
Kenny Endoso
Bar Cook (uncredited)
Charlie Picerni
Charlie Picerni
Pool Player (uncredited)
Ernest Harada
Ernest Harada
Seismologist (uncredited)
Richard Roundtree
Richard Roundtree
Miles Quade
Gene Dynarski
Gene Dynarski
Dam Caretaker
Tim Herbert
Tim Herbert
Las Vegas Man
Dick Warlock
Dick Warlock
Diver at Hollywood Reservoir (uncredited)
Charlton Heston
Charlton Heston
Stewart Graff
George Murdock
George Murdock
Colonel
Geneviève Bujold
Geneviève Bujold
Denise Marshall
Walter Matthau
Walter Matthau
Drunk
H.B. Haggerty
H.B. Haggerty
Pool Player
Jerry Hardin
Jerry Hardin
Man (uncredited)
Monica Lewis
Monica Lewis
Barbara
David S. Cass Sr.
David S. Cass Sr.
Sherriff Merle (uncredited)
Erik Cord
Erik Cord
Office Worker (uncredited)
Jesse Vint
Jesse Vint
Buck
Arthur Tovey
Arthur Tovey
Citizen (uncredited)
Eddie Smith
Eddie Smith
Citizen (uncredited)
Reb Brown
Reb Brown
Young Man on Motorcycle (uncredited)
Barry Sullivan
Barry Sullivan
Dr. Willis Stockle
Leoda Richards
Leoda Richards
Emergency Soup Kitchen Worker in Wilson Plaza (uncredited)
Karl Lukas
Karl Lukas
Man (uncredited)
Paul LeClair
Paul LeClair
National Guardsman (uncredited)
Alex Brown
Alex Brown
Pool Player
Jimmy Nickerson
Jimmy Nickerson
Seismology Graduate Student (uncredited)
Scott Hylands
Scott Hylands
Asst. Caretaker
Dean Smith
Dean Smith
Pool Player (uncredited)
Ava Gardner
Ava Gardner
Remy Royce-Graff
Lonny Chapman
Lonny Chapman
LAPD Captain (uncredited)
Grant Owens
Grant Owens
Police Officer (uncredited)
Jeannie Epper
Jeannie Epper
Blonde Woman (uncredited)
Marjoe Gortner
Marjoe Gortner
Jody
John Dennis
John Dennis
Brawny Foreman
Polly Burson
Polly Burson
Earthquake Survivor (uncredited)
Debralee Scott
Debralee Scott
Kathie (TV version) (uncredited)
Sandy Ward
Sandy Ward
Studio Guard (uncredited)
Bruce M. Fischer
Bruce M. Fischer
Man (uncredited)
Bert Kramer
Bert Kramer
Policeman (uncredited)
Lorne Greene
Lorne Greene
Sam Royce
Alan Vint
Alan Vint
Ralph
Lloyd Gough
Lloyd Gough
Bill Cameron
Sam Chew Jr.
Sam Chew Jr.
Tony (Kathie's Husband) (uncredited)
John Randolph
John Randolph
Los Angeles Mayor
Donald Moffat
Donald Moffat
Dr. Harvey Johnson
Keith Walker
Keith Walker
Man on the Radio (voice) (uncredited)
Ric Carrott
Ric Carrott
National Guardsman (uncredited)
Kip Niven
Kip Niven
Walter Russell
Lloyd Nolan
Lloyd Nolan
Dr. James Vance
John Elerick
John Elerick
Carl Leeds
Victoria Principal
Victoria Principal
Rosa Amici
Diana Herbert
Diana Herbert
Woman (uncredited)
Frances Osborne
Frances Osborne
Housewife (uncredited)
Bob Cunningham
Bob Cunningham
Dr. Frank Ames
Gabriel Dell
Gabriel Dell
Sal
John S. Ragin
John S. Ragin
Chief Inspector
Josh Albee
Josh Albee
Boy with Radio (uncredited)

Images

Earthquake Poster
Earthquake Poster

Detailed Information

General Information

Original Title: Earthquake

Creators: Hwang Dong-hyuk

Gender: Drama, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $7,000,000.00

Revenue: $79,666,653.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/11123

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

PHP com cURL

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

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

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

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