Red Lights (2012)

Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.

2012
Thriller
6.0
/42A3Mi3cIdhPagJ5F7rA4YimuEf.jpg Poster

Cast

Leonardo Sbaraglia
Leonardo Sbaraglia
Palladino
Jeff Mash
Jeff Mash
Male Reporter #4
Toby Jones
Toby Jones
Paul Shackleton
Markus Parilo
Markus Parilo
Notebook Man
Sigourney Weaver
Sigourney Weaver
Margaret Matheson
Cillian Murphy
Cillian Murphy
Tom Buckley
Elizabeth Olsen
Elizabeth Olsen
Sally Owen
Lex Lang
Lex Lang
Presenter #1
Eugenio Mira
Eugenio Mira
Young Simon Silver
Adriane Lenox
Adriane Lenox
Rina
Paulette Sinclair
Paulette Sinclair
Woman in Wheel-Chair
Joely Richardson
Joely Richardson
Monica Handsen
Richard Felix
Richard Felix
Man in Bathroom #1
Rif Hutton
Rif Hutton
Radio Duo Male Voice (voice)
Burn Gorman
Burn Gorman
Benedict Cohen
Robert De Niro
Robert De Niro
Simon Silver
Julius Cotter
Julius Cotter
Dr. Jennings
Eric Loren
Eric Loren
Policeman
Karen David
Karen David
Female Reporter #2
Liliana Cabal
Liliana Cabal
Female Reporter - SPRC
Garrick Hagon
Garrick Hagon
Howard McColm
Mitchell Mullen
Mitchell Mullen
Jim Carroll
Robert Paterson
Robert Paterson
Male Reporter #2
Craig Roberts
Craig Roberts
Ben
Kathy Imrie
Kathy Imrie
Indigent Woman
Josette Simon
Josette Simon
Corrine
Peter Brooke
Peter Brooke
Male Reporter #1
Harris Gordon
Harris Gordon
Male Reporter - SPRC
Bridget Hoffman
Bridget Hoffman
Radio Duo Female Voice (voice)
Pablo Derqui
Pablo Derqui
David (uncredited)
Grant George
Grant George
Presenter #2
Eben Young
Eben Young
Dick
Nikol Kollars
Nikol Kollars
Lab Telekinesis Scientist (uncredited)
Ray Olubowale
Ray Olubowale
Bodyguard
Jee-Yun Lee
Jee-Yun Lee
Fiona Stewart
Eloise Webb
Eloise Webb
Susan Sidgwick
Robert G. Slade
Robert G. Slade
Interviewer - 70's
Gina Bramhill
Gina Bramhill
Judi Cale
Jeany Spark
Jeany Spark
Traci Northrop
Madeleine Potter
Madeleine Potter
Sarah Sidgwick
Jan Cornet
Jan Cornet
David Matheson
Lynn Blades
Lynn Blades
Dana
Ignacio Carreño
Ignacio Carreño
Man in the Bathroom
Patricia Potter
Patricia Potter
Female Doctor
Simon Lee Phillips
Simon Lee Phillips
Standing Spectator
Jajube Mandiela
Jajube Mandiela
Girl With Piercings
Jean Daigle
Jean Daigle
Sally's Father
Miquel Bordoy
Miquel Bordoy
Professor Franklin
Aidan Shipley
Aidan Shipley
Tom's Soldier Son

Images

Red Lights Poster
Red Lights Poster

Video

trailer Oficial

Poder Paranormal - Trailer legendado [HD]

trailer Oficial

Detailed Information

General Information

Original Title: Red Lights

Creators: Hwang Dong-hyuk

Gender: Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $14,000,000.00

Revenue: $13,551,174.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/75638

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

PHP com cURL

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

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

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

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