Kiss the Girls (1997)

Forensic psychologist and detective Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down Casanova, a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.

1997
Drama
Crime
Mystery
Thriller
6.0
/f9sNoZ1boYqIrIgHKblBPnus9ez.jpg Poster

Cast

Richard T. Jones
Richard T. Jones
Seth Samuel
Jay O. Sanders
Jay O. Sanders
FBI Agent Kyle Craig
Mena Suvari
Mena Suvari
Coty Pierce
Tracey Walter
Tracey Walter
Clerk in Bookstore (uncredited)
Morgan Freeman
Morgan Freeman
Det. Alex Cross
Tony Goldwyn
Tony Goldwyn
Dr. Will Rudolph
Robert Peters
Robert Peters
Agent on Robe
Anna Maria Horsford
Anna Maria Horsford
Vicki Cross (uncredited)
Bill Nunn
Bill Nunn
Det. John Sampson, LAPD
John Cothran
John Cothran
FBI Agent at Lair
Tricia Vessey
Tricia Vessey
Woman at Nepenthe Bar
W. Earl Brown
W. Earl Brown
Locksmith
Tony Donno
Tony Donno
Ethan, Kickboxer (uncredited)
Jeremy Piven
Jeremy Piven
Det. Henry Castillo, LAPD
Billy Blanks
Billy Blanks
Instructor
Brian Cox
Brian Cox
Chief Hatfield, Durham PD
Ashley Judd
Ashley Judd
Dr. Kate McTiernan
Gina Ravera
Gina Ravera
Naomi Cross
Alex McArthur
Alex McArthur
Det. Davey Sikes
Cary Elwes
Cary Elwes
Det. Nick Ruskin
David Cowgill
David Cowgill
Chief Resident
Gregg Henry
Gregg Henry
Detective (uncredited)
Patrick Thomas O'Brien
Patrick Thomas O'Brien
Reporter
Sadie Stratton
Sadie Stratton
Beautiful Girl
Jeff Kober
Jeff Kober
Casanova (voice)
Roma Maffia
Roma Maffia
Dr. Ruocco
Tatyana Ali
Tatyana Ali
Janell Cross
Tim Ahern
Tim Ahern
LAPD Sergeant
Larry Cedar
Larry Cedar
Reporter
Helen Martin
Helen Martin
Nana Cross
Alan Wilder
Alan Wilder
Reporter
Deborah Strang
Deborah Strang
Dianne Wainford
Loanne Bishop
Loanne Bishop
Kate's Nurse
Brandi Andres
Brandi Andres
Beautiful Girl
Nancy Yee
Nancy Yee
Chinese Grandmother
Dianna Miranda
Dianna Miranda
Jennifer
Meta Golding
Meta Golding
Beautiful Girl
Anthony Backman
Anthony Backman
Competitive Swimmer (uncredited)
Heidi Schanz
Heidi Schanz
Megan Murphy
Nichole McAuley
Nichole McAuley
Beautiful Girl
William Converse-Roberts
William Converse-Roberts
Dr. Wick Sachs
Brian Brophy
Brian Brophy
Swim Team Manager
Angel Harper
Angel Harper
Reporter
Joe Inscoe
Joe Inscoe
Large Cop
Melinda Renna
Melinda Renna
TV Reporter
Justina Vail Evans
Justina Vail Evans
Beautiful Girl
Jack Kyle
Jack Kyle
Competitive Swimmer (uncredited)

Images

Kiss the Girls Poster
Kiss the Girls Poster

Detailed Information

General Information

Original Title: Kiss the Girls

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Mystery, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $27,000,000.00

Revenue: $60,527,873.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/9437

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

PHP com cURL

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

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

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

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