Ill Live a Long Life to Dote on My Favorite Stepbrother! (2026)

Alba has been reincarnated as the son of an impoverished noble family. When his mother remarried into a dukedom, he was introduced to his stepbrother, Orsis, his favorite person from his previous life. Does this mean my favorite is now my stepbrother? he thought joyfully, But he suddenly remembers that he was the reason his beloved stepbrother lost his smile… To avoid his impending fate, and continue loving his favorite, Alba will do everything in his power to twist fate! This popular series, which has sold over 170,000 copies, brings you a warm and touching story story of a boys reincarnated life in another world!

2026
Suspense
Drama
Ação
5.5
/mvh4P253MjQ9T46hfTrMy1CN6B7.jpg Poster

Episódios

Episódio 1
0h 4min
Episódio 1
Episódio 1
Alba, who possesses memories of his past life, moves to the duke's household with his remarried mother. There, his new stepbrother turns out to be Orsis—the character he adored most in the otome game he played in his previous life. Though Alba rejoices at becoming family with his favorite character, he simultaneously recalls: In the game, it was because of his own excessive pampering by his stepfather that Orsis was plunged into tragedy.
2026-01-06
8.7
Episódio 2
0h 4min
Episódio 2
Episódio 2
Shaken by his encounter with Orsis, Alba suddenly collapses from a seizure. In this world, humans are born with magical power. However, Alba suffers from “Laonen's Dysmagia Syndrome,” which prevents him from controlling the release of his own magic. When he regains consciousness, he feels truly welcomed as family as his stepfather, Hals, and Orsis offer him warm words.
2026-01-13
8.7
Episódio 3
0h 4min
Episódio 3
Episódio 3
To prevent the relationship between Orsis and Hals from growing completely cold, Alba struggles to improve their bond. Through Alba's straightforward words and actions, Hals begins to reevaluate his relationship with Orsis...
2026-01-20
8.7
Episódio 4
0h 4min
Episódio 4
Episódio 4
Just as Hals and Orsis' relationship was improving and things seemed to be going smoothly, they meet Orsis' grandparents at his birthday party. Facing harsh treatment from grandparents who don't think highly of Alba, Alba has another seizure...!?
2026-01-27
8.7
Episódio 5
0h 4min
Episódio 5
Episódio 5
Nenhuma descrição no momento!
2026-02-03
8.7
Episódio 6
0h 4min
Episódio 6
Episódio 6
Nenhuma descrição no momento!
2026-02-10
8.7
Episódio 7
0h 4min
Episódio 7
Episódio 7
Nenhuma descrição no momento!
2026-02-17
8.7
Episódio 8
0h 4min
Episódio 8
Episódio 8
Nenhuma descrição no momento!
2026-02-24
8.7
Episódio 9
0h 4min
Episódio 9
Episódio 9
Nenhuma descrição no momento!
2026-03-03
8.7
Episódio 10
0h 4min
Episódio 10
Episódio 10
Nenhuma descrição no momento!
2026-03-10
8.7
Episódio 11
0h 4min
Episódio 11
Episódio 11
Nenhuma descrição no momento!
2026-03-17
8.7
Episódio 12
0h 4min
Episódio 12
Episódio 12
Nenhuma descrição no momento!
2026-03-24
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

Ill Live a Long Life to Dote on My Favorite Stepbrother! Poster
Ill Live a Long Life to Dote on My Favorite Stepbrother! Poster

Informações Detalhadas

Informações Gerais

Título Original: Ill Live a Long Life to Dote on My Favorite Stepbrother!

Criadores: Hwang Dong-hyuk

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

Temporadas: 1

Episódios: 12

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=304023";

$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=304023";

$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=304023';

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