The Dude in Me (2019)

Dong-hyun is a high school student. One day, he falls from the rooftop and bumps into Pan-soo who is a passerby. Pan-soo is a member of a criminal organization. When the two men wake up in the hospital, they discover that they have switched bodies.

2019
Fantasy
Action
Comedy
7.0
/ofhf0Tn7hnBtboiUEuVj5IZyD3g.jpg Poster

Cast

Park Ju-hyun
Park Ju-hyun
Female Student
Kwon Hyeok-beom
Kwon Hyeok-beom
Cheol-ho
Park Sung-woong
Park Sung-woong
Jang Pan-soo
Park Kyung-hye
Park Kyung-hye
Jae-hee
Nam Jin-bok
Nam Jin-bok
Loan Shark
Ra Mi-ran
Ra Mi-ran
Oh Mi-sun
Lee Jun-hyeok
Lee Jun-hyeok
Man-chul
Kim Hong-pa
Kim Hong-pa
CEO Han
Min Ji-a
Min Ji-a
Han Seo-yeon
Jung Yun-ha
Jung Yun-ha
Japanese Teacher
Jung Won-chang
Jung Won-chang
Min-woo's Friend
Lee Woo-je
Lee Woo-je
Fat Man
Kim Tae-jun
Kim Tae-jun
Loan Shark Big Man
Oh Ji-young
Oh Ji-young
Housekeeper
Yun Bu-jin
Yun Bu-jin
Landlord
Hyun Young
Hyun Young
Kim Dae-han
Kim Dae-han
Moneylender's Big Guy
Oh Yun-su
Oh Yun-su
Hotel Staff
Jo Young-ji
Jo Young-ji
Reporter
Kim Hyeon-mok
Kim Hyeon-mok
Kim Jae-ik
Cha Young-ju
Cha Young-ju
Min-woo's Friend
Lee Woo-sung
Lee Woo-sung
Hospital Ward Guard 2
Kim Kwang-kyu
Kim Kwang-kyu
Kim Jong-ki
Lee Soo-min
Lee Soo-min
Oh Hyun-jung
Lim Seung-Jun
Lim Seung-Jun
Mansion Security Guard
Jung Yoon-seo
Jung Yoon-seo
Attending Physician
Nam Tae-woo
Nam Tae-woo
Pan-soo's Gang Member 1
Jang Jin-hee
Jang Jin-hee
History Teacher
Hwang In-jun
Hwang In-jun
Wrecking Crew
Park Jin-ah
Park Jin-ah
Bully 1
Son Kwang-Eop
Son Kwang-Eop
Section Chief Jo
Choo Suk-young
Choo Suk-young
Min-woo's Friend
Yoon Song-ah
Yoon Song-ah
Dam-im
Kim Bum-jin
Kim Bum-jin
Min Woo-chin
Lee Pung-un
Lee Pung-un
Min-woo
Kim Young
Kim Young
Bully 2
Mi So-yun
Mi So-yun
Coffee Employee
Park Shin-ah
Park Shin-ah
Loan Shark Accountant
Ji Chan
Ji Chan
Detective
Seo Seung-won
Seo Seung-won
Woodworking Employee
Jo Kyung-hyun
Jo Kyung-hyun
Bar Owner
Park Jin-su
Park Jin-su
Police
Bae Kyung Min
Bae Kyung Min
Min-woo's Friend
Heo Yoo-ri
Heo Yoo-ri
Min-woo's Friend
Heo Na-kyung
Heo Na-kyung
Min-woo's Friend
Cho Hyun-young
Cho Hyun-young
Yoon-ji
Kim Jae-man
Kim Jae-man
Detective
Kim Bu-seon
Kim Bu-seon
Grandmother
Lee Ja-eun
Lee Ja-eun
Pianist
Han So-hyun
Han So-hyun
Party Girl
Kim Joon-hyung
Kim Joon-hyung
Pan-soo's Gang Member 3
Kwak Ji-yoo
Kwak Ji-yoo
Nurse
Lee Keon-gu
Lee Keon-gu
CEO Yang's Subordinate
Lee Dong-Young
Lee Dong-Young
Wrecking Crew
Lim Ji-hyung
Lim Ji-hyung
Kim Dong-hyun's Classmate
Park Jun-seong
Park Jun-seong
Math Teacher

Images

The Dude in Me Poster
The Dude in Me Poster

Detailed Information

General Information

Original Title: The Dude in Me

Creators: Hwang Dong-hyuk

Gender: Fantasy, Action, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $14,651,772.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/560527

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

PHP com cURL

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

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

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

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