The Host (2006)

A teenage girl is captured by a giant mutated squid-like creature that appears from Seouls Han River after toxic waste was dumped in it, prompting her family into a frantic search for her.

2006
Science Fiction
Drama
Horror
7.0
/tqDQzYGi1EWHgUZY91YRSJLDJVf.jpg Poster

Cast

Jeong In-gi
Jeong In-gi
Isolation Ward Doctor (uncredited)
Oh Dal-su
Oh Dal-su
The Monster (voice)
Ko A-sung
Ko A-sung
Park Hyun-seo
Scott Wilson
Scott Wilson
Douglas
Yoo Seung-mok
Yoo Seung-mok
Taxi Driver
David Anselmo
David Anselmo
Donald
Kim Hak-seon
Kim Hak-seon
Civilian Military Kim
Ra Mi-ran
Ra Mi-ran
Woman Stomping Her Feet (uncredited)
Kim Roi-ha
Kim Roi-ha
Yellow Suit at Funeral
Park Jin-woo
Park Jin-woo
Isolation Ward Constable (uncredited)
Paul Lazar
Paul Lazar
American Doctor
Park No-shik
Park No-shik
Inquiry Officer
Song Kang-ho
Song Kang-ho
Park Gang-du
Ko Chang-seok
Ko Chang-seok
Nurse
Choi Jae-sup
Choi Jae-sup
Detective Agency Subordinate 1 (uncredited)
Koh Soo-hee
Koh Soo-hee
Hostage nurse
Bae Doona
Bae Doona
Park Nam-joo
Kim Bi-bi
Kim Bi-bi
Isolation Ward Nurse 1 (uncredited)
Min Kyung-jin
Min Kyung-jin
Altar Security (uncredited)
Yoon Je-moon
Yoon Je-moon
Homeless Man
Son Young-soon
Son Young-soon
Grandmother from Bus (uncredited)
Lee Dong-yong
Lee Dong-yong
4th Mat 2 (uncredited)
Byun Hee-bong
Byun Hee-bong
Park Hie-bong
Park Hae-il
Park Hae-il
Park Nam-il
Shin Hyeon-jong
Shin Hyeon-jong
Mr. Yoon's Friend (uncredited)
Lee Jae-eung
Lee Jae-eung
Se-jin
Kwon Byung-gil
Kwon Byung-gil
Doctor from Isolation Ward 1 (uncredited)
Kwon Hyeok-pung
Kwon Hyeok-pung
Fisherman 1 (uncredited)
Son Jin-ho
Son Jin-ho
Doctor from Isolation Ward 2
Yim Pil-sung
Yim Pil-sung
Fat Guevara
Baek Do-bin
Baek Do-bin
Fumigation Truck Skinny Man
Choi Dae-sung
Choi Dae-sung
Man from Duck Boat (uncredited)
Jung Seo-yoon
Jung Seo-yoon
Woman with Long Hair (uncredited)
Philip Hersh
Philip Hersh
Additional Voices (voice) (uncredited)
Jeong Kang-hee
Jeong Kang-hee
Mr. Yoon's Employee (uncredited)
Kim Choo-wol
Kim Choo-wol
Woman crying (uncredited)
Kim Jin-seon
Kim Jin-seon
Woman from Couple (uncredited)
Kim Nan-hee
Kim Nan-hee
Woman from Duck Boat (uncredited)
Lee Jong-yoon
Lee Jong-yoon
4th Mat 1 (uncredited)
Park Jeong-gi
Park Jeong-gi
Fumigation Truck Dyed-hir Man (uncredited)
Yoo Yeon-soo
Yoo Yeon-soo
District officer Mr. Jo (uncredited)
Seo Young-ju
Seo Young-ju
Protester

Images

The Host Poster
The Host Poster

Detailed Information

General Information

Original Title: The Host

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Drama, Horror,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $11,000,000.00

Revenue: $88,489,643.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/1255

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

PHP com cURL

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

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

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

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