Citizen of a Kind (2024)

After losing her laundry store to a fire incident, a single mom Duk-hee receives a call from a bank offering a generous upfront loan so she takes it right away. But soon after, she finds out that she has become a victim of a voice phishing scheme. Devastated, Duk-hee turns to the police for help, only to be more disappointed that there is no hope of retrieving her money. At the moment of despair, Jae-min, the phisher who tricked her, rings her phone once again to tip Duk-hee off about the criminal organization that locked him up and coerced him to make voice phishing calls from China. With that call, Duk-hee makes up her mind to investigate this case for herself and take a plane to China with her friends.

2024
Crime
Comedy
7.0
/hu4nI6znjpdLqcq2SLfLRc3CJOQ.jpg Poster

Cast

Kwon Eun-seong
Kwon Eun-seong
Hoon
Park Byung-eun
Park Byung-eun
Detective Park
Lee Yang-hee
Lee Yang-hee
Lawyer
Lee Mu-saeng
Lee Mu-saeng
Myung-hwan
Gong Myoung
Gong Myoung
Jae-min
Moon Dong-hyeok
Moon Dong-hyeok
Tae-seong
Choi Hee-jin
Choi Hee-jin
Welfare Center Staff
Nam Joong-gyu
Nam Joong-gyu
Student
Ra Mi-ran
Ra Mi-ran
Duk-hee
Yeom Hye-ran
Yeom Hye-ran
Bong-rim
Jung Yun-ha
Jung Yun-ha
Bank Clerk
Bae Myeong-jin
Bae Myeong-jin
Big 3
Lee Ju-seung
Lee Ju-seung
Kyung-cheol
Park Seong-geun
Park Seong-geun
Police Team Leader
Jang Yoon-ju
Jang Yoon-ju
Sook-ja
Kim Yeon-kyo
Kim Yeon-kyo
Shon Jin-young
Kim Sung-kang
Kim Sung-kang
Passenger
Sung Hyuk
Sung Hyuk
Dae-woo
Lee Kyu-ho
Lee Kyu-ho
Big 1
Kim Yool-ho
Kim Yool-ho
Detective Kim
Lee Hae-woon
Lee Hae-woon
Gi-beom
Ahn Eun-jin
Ahn Eun-jin
Ae-rim
Shim Wan-jun
Shim Wan-jun
Information
Kim Ki-moo
Kim Ki-moo
Threat
Ahn So-yo
Ahn So-yo
Eun-mi
Seo Ji-hoo
Seo Ji-hoo
Detective Shin
Kim Song-il
Kim Song-il
Diplomat
Pyo Chang-won
Pyo Chang-won
Crime Expert
Lim Ha-bi
Lim Ha-bi
Min-ji
Kwak Jin
Kwak Jin
Customer's Cleaner
Bae Yu-ri
Bae Yu-ri
Announcer

Images

Citizen of a Kind Poster
Citizen of a Kind Poster

Detailed Information

General Information

Original Title: Citizen of a Kind

Creators: Hwang Dong-hyuk

Gender: Crime, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $11,976,305.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/696047

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

PHP com cURL

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

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

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

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