Cop Craft (2019)

15 years ago, an unknown hyperspace gate opened over the Pacific. Beyond this gate lies Reto Semaani, a strange alternate world where fairies and monsters live. San Teresa City—a city where over two million immigrants live from both worlds. As a result, there are the haves and the have-nots. Here is the worlds newest city of dreams. But in the shadow of the chaos, crime is rampant: drugs, prostitution, and weapon trafficking. The detectives who stand up to these heinous crimes are in the San Teresa City Police. When the detective Kei Matoba and the alternate-world knight Tirana—two individuals who differ in gender, personality, and even world of origin—meet, an incident erupts. Two worlds. Two justices. From this, the curtain rises on a buddy police action story!

2019
Animation
Action & Adventure
Sci-Fi & Fantasy
6.0
/7g3vyoMBPhLih3h6KP0Ps4KBQUo.jpg Poster

Episodes

Special Episode: Beautiful Knight! Pursue the Captured Fairy!
0h 23min
Episódio 1
Special Episode: Beautiful Knight! Pursue the Captured Fairy!
Nenhuma descrição no momento!
2019-09-10
8.7
Cop Show, Witch Craft
0h 23min
Episódio 1
Cop Show, Witch Craft
Nenhuma descrição no momento!
2019-07-09
8.7
Dragnet Mirage
0h 23min
Episódio 2
Dragnet Mirage
Nenhuma descrição no momento!
2019-07-16
8.7
Midnight Train
0h 23min
Episódio 3
Midnight Train
Nenhuma descrição no momento!
2019-07-23
8.7
In The Air Tonight
0h 23min
Episódio 4
In The Air Tonight
Nenhuma descrição no momento!
2019-07-30
8.7
Lonesome Vampire
0h 23min
Episódio 5
Lonesome Vampire
Nenhuma descrição no momento!
2019-08-06
8.7
Need For Speed
0h 23min
Episódio 6
Need For Speed
Nenhuma descrição no momento!
2019-08-13
8.7
Girls On Ice
0h 23min
Episódio 7
Girls On Ice
Nenhuma descrição no momento!
2019-08-20
8.7
Smells Like Toon Spirits
0h 23min
Episódio 8
Smells Like Toon Spirits
Nenhuma descrição no momento!
2019-08-27
8.7
A King Maker
0h 23min
Episódio 9
A King Maker
Nenhuma descrição no momento!
2019-09-03
8.7
Cock Robin, John Doe
0h 23min
Episódio 10
Cock Robin, John Doe
Nenhuma descrição no momento!
2019-09-17
8.7
Transitional Crisis
0h 23min
Episódio 11
Transitional Crisis
Nenhuma descrição no momento!
2019-09-24
8.7
Episódio 12
0h 23min
Episódio 12
Episódio 12
Nenhuma descrição no momento!
2019-10-01
8.7

Cast

Kenji Hamada
Kenji Hamada
Jack Roth
Marina Inoue
Marina Inoue
Cameron Estefan
Kenjiro Tsuda
Kenjiro Tsuda
Kei Matoba
Wataru Takagi
Wataru Takagi
Biz O`naill
Fumiko Orikasa
Fumiko Orikasa
Cecil Epps
Satoshi Tsuruoka
Satoshi Tsuruoka
Aleksandr Godnov
Masaya Matsukaze
Masaya Matsukaze
Dennis Elvaji
Mayu Yoshioka
Mayu Yoshioka
Tilarna Exedilika

Where Watch

Images

Cop Craft Poster
Cop Craft Poster

Detailed Information

General Information

Original Title: Cop Craft

Creators: Hwang Dong-hyuk

Gender: Animation, Action & Adventure, Sci-Fi & Fantasy,

Seasons: 1

Episodes: 63

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/88050

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

PHP com cURL

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

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

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

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