Dark Shadows (2012)

Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.

2012
Fantasy
Comedy
6.0
/9pRJwfuX0GFiJFz3a3FDXUolptB.jpg Poster

Cast

Jeff Mash
Jeff Mash
Construction Worker 2
Lee Nicholas Harris
Lee Nicholas Harris
Fisherman
Steve Saunders
Steve Saunders
Fisherman (uncredited)
Nigel Whitmey
Nigel Whitmey
Hard Hat #1
Helena Bonham Carter
Helena Bonham Carter
Dr. Julia Hoffman
Jake Francis
Jake Francis
Photographer (uncredited)
Chloë Grace Moretz
Chloë Grace Moretz
Carolyn Stoddard
Ivan Kaye
Ivan Kaye
Joshua Collins
Guy Flanagan
Guy Flanagan
Bearded Hippie
Christopher Lee
Christopher Lee
Clarney
Hannah Murray
Hannah Murray
Hippie Chick #2
David Selby
David Selby
Guest
Philip Bulcock
Philip Bulcock
Hard Hat #2
Johnny Depp
Johnny Depp
Barnabas Collins
Jonny Lee Miller
Jonny Lee Miller
Roger Collins
Michelle Pfeiffer
Michelle Pfeiffer
Elizabeth Collins Stoddard
Jorge Leon
Jorge Leon
Collinwood Worker (uncredited)
Nick Thomas-Webster
Nick Thomas-Webster
Timothy (uncredited)
Harry Taylor
Harry Taylor
Henchman
Eva Green
Eva Green
Angelique Bouchard
Bella Heathcote
Bella Heathcote
Victoria Winters / Josette DuPres
Gulliver McGrath
Gulliver McGrath
David Collins
Jackie Earle Haley
Jackie Earle Haley
Willie Loomis
Ray Shirley
Ray Shirley
Mrs. Johnson
Alice Cooper
Alice Cooper
Self
Susanna Cappellaro
Susanna Cappellaro
Naomi Collins
Josephine Butler
Josephine Butler
David's Mother
William Hope
William Hope
Sheriff
Shane Rimmer
Shane Rimmer
Board Member #1
Glen Mexted
Glen Mexted
Captain Rubberpants
Sophie Kennedy Clark
Sophie Kennedy Clark
Hippie Chick #1
Victoria Bewick
Victoria Bewick
Hippie Chick #3
Sean Mahon
Sean Mahon
Collinsport Cop
Alexia Osborne
Alexia Osborne
Young Victoria
Richard Hollis
Richard Hollis
Vicky's Father
Charlotte Spencer
Charlotte Spencer
Coat Check Girl
Gabriel Freilich
Gabriel Freilich
Hippie 3
Thomas Grube
Thomas Grube
Construction Worker 1
Raffey Cassidy
Raffey Cassidy
Young Angelique
Jonathan Frid
Jonathan Frid
Guest
Kathryn Leigh Scott
Kathryn Leigh Scott
Guest
Lara Parker
Lara Parker
Guest
Janine Craig
Janine Craig
Go Go Dancer 1
Adelle Young
Adelle Young
Go Go Dancer 2
Dominika Van Santen
Dominika Van Santen
Go Go Dancer 3
Gintare Beinoraviciute
Gintare Beinoraviciute
Town Lady (uncredited)
Greg Bennett
Greg Bennett
Chet the Taxidermist (uncredited)
Duncan Casey
Duncan Casey
Policeman
Edward Coupland
Edward Coupland
Fireman (uncredited)
Leigh Daniels
Leigh Daniels
Slow Dancer (uncredited)
Christos Lawton
Christos Lawton
Dancer (uncredited)
David Lyddon
David Lyddon
Workman (uncredited)
Thomas McDonell
Thomas McDonell
Young Barnabus Collins (uncredited)
Duncan Meadows
Duncan Meadows
Mob (uncredited)
Dale Mercer
Dale Mercer
Slow Dancer (uncredited)
Benjayx Murphy
Benjayx Murphy
Builder (uncredited)
Valery Richardson
Valery Richardson
Townsperson (uncredited)

Images

Dark Shadows Poster
Dark Shadows Poster

Video

trailer Oficial

Sombras da Noite - Trailer 1 (legendado) [HD]

trailer Oficial

Detailed Information

General Information

Original Title: Dark Shadows

Creators: Hwang Dong-hyuk

Gender: Fantasy, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $150,000,000.00

Revenue: $245,527,149.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/62213

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

PHP com cURL

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

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

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

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