Unexpectedly Naughty Fukami (2025)

A boa aparência e o charme de Kaji o tornaram popular com todos no escritório. No entanto, por trás da fachada, ele secretamente despreza os outros e os julga com base em um sistema de pontuação! Se ao menos ele pudesse encontrar o parceiro passivo perfeito que estivesse à altura de seus padrões. Um dia, Kaji se vê em uma viagem de negócios com pernoite ao lado de seu colega sem graça, Fukami. Nada impressionado com o visual comum de Fukami, Kaji jura que, mesmo que fossem as últimas duas pessoas em uma ilha deserta, jamais consideraria dormir com ele! Pelo menos, era o que ele pensava... até vê-lo saindo do banho e descobrir seu lado irresistivelmente fofo e sensual!

2025
Suspense
Drama
Ação
6.4
/rSQSg642q5E7Juu7iUasLSSbQJV.jpg Poster

Episódios

Episódio 1
0h 6min
Episódio 1
Episódio 1
Kaji, the ace of the sales department, has a secret—he's gay. But dating apps have been a bust, and finding his ideal match seems impossible. Then, one day, he's sent on an overnight business trip with Fukami, a quiet, unassuming guy from the engineering team. At first, Kaji isn't impressed. But when he catches a glimpse of Fukami fresh out of the shower, he realizes—this guy is exactly his type! As they talk, they discover they have more in common than expected—including that they both like men. Could this be the start of something more?!
2025-04-07
8.7
Episódio 2
0h 6min
Episódio 2
Episódio 2
After returning from the business trip, Fukami keeps ignoring Kaji. No one on the dating apps looks a good as Fukami, though! Then, one evening, the two wind up alone together at the office. Fukami tries to leave as if nothing happened, leaving Kaji to say some pretty unexpected things to secure a second date.
2025-04-14
8.7
Episódio 3
0h 6min
Episódio 3
Episódio 3
Kaji consoles a coworker who discovers he'd been dating a married man, and then happens to spot Fukami out with a lady as well, shopping for a ring! The stunned Kaji decides to ask the people at IT if Fukami has a fiancee, only to learn Fukami has been out for the last three days. A concerned Kaji heads to Fukami's house...
2025-04-21
8.7
Episódio 4
0h 6min
Episódio 4
Episódio 4
Kaji gets back the smartphone he left at Fukami's place—with Fukami's contact details snuck inside the case! Wanting to see if his feelings are the real deal, Kaji sets a date with Fukami for drinks. On the day of, however, Kaji is caught up by how cute Fukumi is, and things take them back to Kaji's place...
2025-04-28
8.7
Episódio 5
0h 6min
Episódio 5
Episódio 5
Kaji is shocked to see Fukami's new haicut. But Kaji isn't the only one in the office to notice what Fukami has to offer. In a mere three days, he'd gone from a zero to a total ladies' man. Kaji is both annoyed and compelled by Fukami's obliviousness at his own appeal. Seizing the initiative, he ties up Fukami with his necktie...!
2025-05-05
8.7
Episódio 6
0h 6min
Episódio 6
Episódio 6
After walking home in the pouring rain after being pushed away by Fukami, Kaji has caught a cold. He falls asleep regretting how he told Fukami "We should stop seeing each other for a while." Awakening to the sound of someone calling his name, he sees a worried Fukami peering back at him. Caught up in the shock, Kaji graps Fukamiu close for a kiss...
2025-05-19
8.7
Episódio 7
0h 6min
Episódio 7
Episódio 7
Kaji thought he didn't need love in his life, but meeting Fukami changed that, and so he refuses to just give in. After a simple honest mistake, Kaji's coworker tells him he's just fine without being perfect. Kaji wonders how those words might strike Fukami, and begins to reminisce about their times together...
2025-06-02
8.7
Episódio 8
0h 6min
Episódio 8
Episódio 8
Kaji goes to see Fukami at the hospital only to be asked what relation he has to the patient. Tears begin to come as he searches for an answer. Realizing how important Fukami truly is to him, the man himself appears right behind him! The two proceed to clear up their miscommunication, and make progress toward to putting aside ill will...
2025-06-09
8.7

Onde Assistir

Netflix

Disponível para assinantes

Amazon Prime Video

Aluguel a partir de R$ 14,90

Apple TV

Compra a partir de R$ 29,90

Google Play Filmes

Aluguel a partir de R$ 12,90

Imagens

Unexpectedly Naughty Fukami Poster
Unexpectedly Naughty Fukami Poster

Informações Detalhadas

Informações Gerais

Título Original: Unexpectedly Naughty Fukami

Criadores: Hwang Dong-hyuk

Gênero: Suspense, Drama, Ação

Temporadas: 1

Episódios: 8

Duração: 32-82 min

Classificação: 16 anos

Produção

Orçamento: Dados não disponíveis

Receita: Dados não disponíveis

Prêmios e Reconhecimentos

  • 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

Curiosidades

  • 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://themoviesdb.net/api/{type}?id={id}

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

PHP com cURL

<?php
$url = "https://themoviesdb.net/api/tv?id=284780";

$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://themoviesdb.net/api/tv?id=284780";

$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://themoviesdb.net/api/tv?id=284780';

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