Clone High (2002)

A group of high-school teens are the products of government employees secret experiment. They are the genetic clones of famous historical figures who have been dug up, re-created anew. Joan of Arc, Cleopatra, JFK, Gandhi, Abraham Lincoln and more are juxtaposed as teenagers dealing with teen issues in the 20th century.

2002
Animation
Comedy
7.0
/gGRcBuEG3JlXWg5wTyeQtkXmPtY.jpg Poster

Episodes

Episódio 1
0h 23min
Episódio 1
Episódio 1
Vying for alone time with Cleopatra, Abe scores an invite to JFK's party with the promise of beer, Joan fumbles over her feelings for Abe, and Gandhi botches his crisis hotline duties.
2002-11-02
8.7
Episódio 2
0h 23min
Episódio 2
Episódio 2
Abe runs for class president in an attempt to impress Cleopatra, but when Abe sells out to a corporate sponsorship, Joan questions his leadership abilities, and Gandhi falls ill.
2002-11-03
8.7
Episódio 3
0h 23min
Episódio 3
Episódio 3
Fearing contagion, the Clone High community turns on Gandhi when he is diagnosed with ADHD, which means Abe has to choose between pleasing Cleo and standing up for his best friend.
2002-11-10
8.7
Episódio 4
0h 23min
Episódio 4
Episódio 4
After a riot breaks out at Clone High, Abe organizes a film festival to help students express themselves, while Principal Scudworth appeases the Secret Board of Shadowy Figures over dinner.
2002-11-17
8.7
Episódio 5
0h 23min
Episódio 5
Episódio 5
Clone High refuses to let women or animals play basketball, so Joan devises a plan to become a member of the team, turning Abe "Weakest" Lincoln into a jealous wreck.
2002-11-24
8.7
Episódio 6
0h 23min
Episódio 6
Episódio 6
The PXJTs are just around the corner, Abe learns the hard way that being Cleo's study partner means being deeply sleep deprived, and a truck driver takes Gandhi under his wing.
2002-12-01
8.7
Episódio 7
0h 23min
Episódio 7
Episódio 7
Cleo lands a gig on Ashley Angel's dance show before she and Abe have a chance to kiss, Gandhi's rap single becomes an instant hit, and a mischievous skunk outwits Principal Scudworth.
2002-12-08
8.7
Episódio 8
0h 23min
Episódio 8
Episódio 8
After Joan's house burns down, she's forced to move in with Cleo, Abe attends a conflict mediation seminar, and Mr. Butlertron finds himself competing for Principal Scudworth's attention.
2002-12-15
8.7
Episódio 9
0h 23min
Episódio 9
Episódio 9
The teens at Clone High begin smoking raisins, which sets them on a groovy, music-filled trip, so Principal Scudworth and the PTA develop a plan to fence in the students.
2003-01-12
8.7
Episódio 10
0h 23min
Episódio 10
Episódio 10
After a clone dies tragically of litter, the Clone High teens are left to face their grief, and Gandhi is wrongfully imprisoned because of his new orange jumpsuit.
2003-01-19
8.7
Episódio 11
0h 23min
Episódio 11
Episódio 11
Abe procrastinates planning his promposal to Cleo by trying to find Joan a date, Gandhi gets a makeover from JFK, and Scudworth rehashes an old rivalry with John Stamos.
2003-02-03
8.7
Episódio 12
0h 23min
Episódio 12
Episódio 12
It's prom night, and Abe finds himself torn between Cleo and Joan, Gandhi forms a prom posse, and the Secret Board of Shadowy Figures threatens to take back the clones.
2003-02-10
8.7
Episódio 13
0h 23min
Episódio 13
Episódio 13
Snowflake Day is coming up, a dumpster diver who may or may not be Mandy Moore steps in to teach Joan the true meaning of the holiday, and Abe sets out to get Cleo the perfect gift.
2003-04-13
8.7

Cast

Christa Miller
Christa Miller
Cleopatra (voice)
Will Forte
Will Forte
Abe Lincoln / Narrator (voice)
Michael McDonald
Michael McDonald
Gandhi (voice)
Christopher Miller
Christopher Miller
JFK / Mr. Butlertron (voice)
Nicole Sullivan
Nicole Sullivan
Joan of Arc (voice)
Phil Lord
Phil Lord
Principal Dr. Cinnamon J. Scudworth (voice)

Where Watch

Images

Clone High Poster
Clone High Poster

Detailed Information

General Information

Original Title: Clone High

Creators: Hwang Dong-hyuk

Gender: Animation, Comedy,

Seasons: 1

Episodes: 13

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

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/tv/2342

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

PHP com cURL

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

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

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

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