Repo! The Genetic Opera (2008)

By the year 2056, an epidemic of organ failures has devastated the planet. The megacorporation GeneCo provides organ transplants on a payment plan - and those who cant fulfill their plans have their organs repossessed. In the midst of this, a sickly teenager discovers a shocking secret about herself, her father, and their connection to GeneCo.

2008
Music
Science Fiction
Horror
6.0
/2G5LczM1clXu3byEudWk9w0KDYD.jpg Poster

Cast

Romina D'Ugo
Romina D'Ugo
Mag's Asian Chorus Girl #3 / Support Group Member #3
Janelle Hutchison
Janelle Hutchison
Opera Audience Member #8
Alexa PenaVega
Alexa PenaVega
Shilo Wallace
Melissa Panton
Melissa Panton
Support Group Member #1
Rebecca Marshall
Rebecca Marshall
Woman with Martini Glass
Bill Moseley
Bill Moseley
Luigi Largo
Paul Sorvino
Paul Sorvino
Rotti Largo
Athena Karkanis
Athena Karkanis
Female Repo Victim
Anthony Stewart Head
Anthony Stewart Head
Nathan Wallace / Repo Man
J. LaRose
J. LaRose
Geneco Spokesperson
Dean Armstrong
Dean Armstrong
Male Victim
Brad Austin
Brad Austin
Young Morman Man
Andrea Ciacci
Andrea Ciacci
Opera Gentern #3 / Hallucination Gentern #1
Kathy Imrie
Kathy Imrie
Opera Audience Member #4
Marty Adams
Marty Adams
Big Man
Hazel Gorin
Hazel Gorin
Mourner #1 / DJ Granny
Nina Dobrev
Nina Dobrev
Teenage Zydrate Addict
Briana Buckmaster
Briana Buckmaster
Sherrie Alviso
Stephan Dubeau
Stephan Dubeau
Amber's Valet #2
Timothy Burd
Timothy Burd
Night Surgeon Victim
Elena Juatco
Elena Juatco
Night Surgeon Gentern #1
Sarah Power
Sarah Power
Marni Wallace
Andreja Punkris
Andreja Punkris
Rotti's Henchwoman #1
Erica Cox
Erica Cox
Opera Audience Member #2
Paris Hilton
Paris Hilton
Amber Sweet
Gord Robertson
Gord Robertson
Puppeteer #2
Thom Allison
Thom Allison
Gossip Journalist
Dani Jazzar
Dani Jazzar
Amber's Male Dancer #2
Paul De La Rosa
Paul De La Rosa
Opera Audience Member #5
Joan Jett
Joan Jett
Guitar Player (uncredited)
Jennifer Mote
Jennifer Mote
Support Group Member #7
Sarah Brightman
Sarah Brightman
Blind Mag
Nivek Ogre
Nivek Ogre
Pavi Largo
Terrance Zdunich
Terrance Zdunich
Graverobber

Where Watch

Images

Repo! The Genetic Opera Poster
Repo! The Genetic Opera Poster

Detailed Information

General Information

Original Title: Repo! The Genetic Opera

Creators: Hwang Dong-hyuk

Gender: Music, Science Fiction, Horror,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $8,500,000.00

Revenue: $198,883.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/14353

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

PHP com cURL

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

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

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

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