Damien (2016)

After discovering his origins, Damien Thorn must cope with life as the Anti-Christ.

2016
Drama
Sci-Fi & Fantasy
6.0
/l6wvwTlF9hlZ6Yg5dqBYTtmzYkb.jpg Poster

Episodes

The Beast Rises
0h 43min
Episódio 1
The Beast Rises
Aclamado fotógrafo de guerra Damien Thorn percebe que é o Anticristo após passar por um evento traumático durante um trabalho.
2016-03-07
8.7
Second Death
0h 43min
Episódio 2
Second Death
Damien se torna alvo de várias conspirações, levando o Detetive Shay a interrogá-lo.
2016-03-14
8.7
The Deliverer
0h 43min
Episódio 3
The Deliverer
Damien aconselha um velho amigo sobre as intenções de Rutledge; Simone busca por respostas na igreja; Shay recebe uma visita inesperada; e Rutledge ganha a confiança de Damien após uma morte misteriosa.
2016-03-21
8.7
The Number of a Man
0h 43min
Episódio 4
The Number of a Man
Damien e Rutledge dificultam a investigação do Detetive Shay; Simone tem uma experiência religiosa extrema.
2016-03-28
8.7
Seven Curses
0h 43min
Episódio 5
Seven Curses
Damien passa por uma situação emocionalmente estressante ao entrar em contato com um veterano de guerra.
2016-04-04
8.7
Temptress
0h 43min
Episódio 6
Temptress
Damien é levado a uma figura amada de seu passado e confronta Rutledge quando ele começa a desvendar a conspiração a seu respeito.
2016-04-11
8.7
Abattoir
0h 43min
Episódio 7
Abattoir
Damien recebe ajuda de uma fonte surpreendente; Shay localiza um velho amigo de Damien; uma figura misteriosa pede a ajuda de Simone; e Rutledge faz uma oferta para Damien.
2016-04-18
8.7
Here Is Wisdom
0h 43min
Episódio 8
Here Is Wisdom
Damien tenta controlar seu destino, o que leve a um confronto sangrento. Enquanto isso, Simone e Greta conhecem Veronica, e Shay perde uma testemunha.
2016-04-25
8.7
The Devil You Know
0h 43min
Episódio 9
The Devil You Know
Damien procura ajuda de Greta, e Simone usa Veronica para chegar a Rutledge.
2016-05-02
8.7
Ave Satani
0h 43min
Episódio 10
Ave Satani
Damien faz o último sacrifício enquanto Rutledge e Lyons têm como alvo o círculo de Damien.
2016-05-09
8.7

Cast

Bradley James
Bradley James
Damien Thorn
Megalyn Echikunwoke
Megalyn Echikunwoke
Simone Baptiste
Omid Abtahi
Omid Abtahi
Amani Golkar

Where Watch

Images

Damien Poster
Damien Poster

Detailed Information

General Information

Original Title: Damien

Creators: Hwang Dong-hyuk

Gender: Drama, Sci-Fi & Fantasy,

Seasons: 1

Episodes: 10

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

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/tv/19033

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

PHP com cURL

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

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

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

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