The Long Kiss Goodnight (1996)

Samantha Caine is a small-town schoolteacher and mom with no memory of her life before washing up on a beach eight years ago. After a car accident and a violent home invasion trigger flashes of her past, she discovers she used to be a deadly CIA assassin. Teaming up with a wisecracking private investigator, Samantha must return to her old ways to take down the people who tried to erase her.

1996
Crime
Action
Mystery
Thriller
6.0
/iPOXTAUguRqlRXJYBMWWVZGLBe3.jpg Poster

Cast

Craig Eldridge
Craig Eldridge
Crime Scene Reporter
Samuel L. Jackson
Samuel L. Jackson
Mitch Henessey
Gerry Bamman
Gerry Bamman
CIA Man (uncredited)
Paul Essiembre
Paul Essiembre
Press Aide (uncredited)
Craig Bierko
Craig Bierko
Timothy
Judah Katz
Judah Katz
Harry (Perkin's Aide)
Edwin Hodge
Edwin Hodge
Todd Henessey
Alan North
Alan North
Earl
David Morse
David Morse
Luke / Daedalus
Rex Linn
Rex Linn
Man in Bed
Brian Cox
Brian Cox
Dr. Nathan Waldman
G.D. Spradlin
G.D. Spradlin
President
Patrick Malahide
Patrick Malahide
Leland Perkins
Geena Davis
Geena Davis
Samantha Caine / Charly Baltimore
Shawn Doyle
Shawn Doyle
Donlevy Bum Cop
Larry King
Larry King
Self
Yvonne Zima
Yvonne Zima
Caitlin Caine
Charles A. Tamburro
Charles A. Tamburro
Helicopter Pilot
John Stead
John Stead
Deer Lick Sentry
Tom Amandes
Tom Amandes
Hal
Joseph McKenna
Joseph McKenna
One-Eyed Jack
Melina Kanakaredes
Melina Kanakaredes
Trin
Kristen Bone
Kristen Bone
Girl #1
Bill MacDonald
Bill MacDonald
Hostage Agent
Frank Moore
Frank Moore
Surveillance Man
Sharon Washington
Sharon Washington
Fran Henessey
Chad Donella
Chad Donella
Teenage Burnout #2
Ken Ryan
Ken Ryan
News Anchor
Ivar Brogger
Ivar Brogger
Intelligence Analyst Jack Wadsworth (uncredited)
Michael G. Brown
Michael G. Brown
Assassin (uncredited)
Carrie Loring
Carrie Loring
Caroller (uncredited)

Images

The Long Kiss Goodnight Poster
The Long Kiss Goodnight Poster

Detailed Information

General Information

Original Title: The Long Kiss Goodnight

Creators: Hwang Dong-hyuk

Gender: Crime, Action, Mystery, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $65,000,000.00

Revenue: $89,456,761.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/11412

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

PHP com cURL

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

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

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

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