I, the Executioner (2024)

The veteran detective Seo Do-cheol and his team at Major Crimes, relentless in their pursuit of criminals, join forces with rookie cop Park Sun-woo to track down a serial killer who has plunged the nation into turmoil.

2024
Crime
Action
Comedy
6.0
/akqfhtM1Wa1klFi7ijmyNm7Sm1j.jpg Poster

Cast

Kim Won-hae
Kim Won-hae
Former Team Leader
Oh Dal-su
Oh Dal-su
Oh Jae-pyeong
Woo Jeong-won
Woo Jeong-won
Chi-hoon's Mother
Kim Han-sol
Kim Han-sol
Reporter
Hyun Bong-sik
Hyun Bong-sik
Ddeokchil
Huh Joon-ho
Huh Joon-ho
Kang Hang-jo
Ahn Bo-hyun
Ahn Bo-hyun
Min Kang-hoon
Jeong Man-sik
Jeong Man-sik
Jeon Seok-woo
Park Myung-shin
Park Myung-shin
School Principal
Park Kyung-hye
Park Kyung-hye
Gambling Group
Nam Jin-bok
Nam Jin-bok
Police
Hwang Jung-min
Hwang Jung-min
Seo Do-cheol
Jin Kyung
Jin Kyung
Lee Joo-yeon
Oh Dae-hwan
Oh Dae-hwan
Wang Dong-hyun
Jang Yoon-ju
Jang Yoon-ju
Bong Yoon-ju
Kim Si-hoo
Kim Si-hoo
Yoon Shi-young
Shin Seung-hwan
Shin Seung-hwan
Park Seung-hwan
Kwon Hae-hyo
Kwon Hae-hyo
Choi Wan-ki
Joo Bo-bi
Joo Bo-bi
Gambling Group
Jung Hae-in
Jung Hae-in
Park Sun-woo
Kim Jae-hwa
Kim Jae-hwa
Madam
Seo Young-joo
Seo Young-joo
Fake Haechi
Cha Se-jin
Cha Se-jin
Chi Hoon gang
Heo Nam-jun
Heo Nam-jun
Detective
Park Jun-myun
Park Jun-myun
Gambling Group
Byun Hong-jun
Byun Hong-jun
Seo Woo-jin
Ahn Sang-tae
Ahn Sang-tae
Dean of Students
Jo Kwan-woo
Jo Kwan-woo
Chi-hoon's Father
Kim Min-su
Kim Min-su
MC Wrecka
Hwang In-mu
Hwang In-mu
Fire Fist TV

Images

I, the Executioner Poster
I, the Executioner Poster

Detailed Information

General Information

Original Title: I, the Executioner

Creators: Hwang Dong-hyuk

Gender: Crime, Action, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $53,453,611.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/995926

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

PHP com cURL

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

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

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

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