The Card Player (2004)

Policewoman Anna Mari is forced to play a dangerous game with the title serial killer. If she loses, she witnesses the maniacs tortured victims having their throats cut in explicit close-up detail via webcam. She teams up with British cop John Brennan to find out the identity of the murderer.

2004
Crime
Mystery
Thriller
Horror
4.0
/pGS2aWU5BqjzwHjeiBCtPEjmaqX.jpg Poster

Cast

Robert Madison
Robert Madison
Gustavo
Claudio Santamaria
Claudio Santamaria
Carlo Sturni
Mia Benedetta
Mia Benedetta
Francesca
Lynn Swanson
Lynn Swanson
C.I.D. wife (uncredited)
Stefania Rocca
Stefania Rocca
Anna Mari
Cosimo Fusco
Cosimo Fusco
Berardelli
Liam Cunningham
Liam Cunningham
John Brennan
Mario Opinato
Mario Opinato
Inspector Morgani
Micaela Pignatelli
Micaela Pignatelli
Professor Terzi
Francesco Guzzo
Francesco Guzzo
Anti-Hacker #3
Conchita Puglisi
Conchita Puglisi
Marta
Vera Gemma
Vera Gemma
Third Victim
Luis Molteni
Luis Molteni
Pathologist
Carlo Giuseppe Gabardini
Carlo Giuseppe Gabardini
Anti-Hacker #1
Silvio Muccino
Silvio Muccino
Remo
Elisabetta Rocchetti
Elisabetta Rocchetti
Second Victim
Adalberto Maria Merli
Adalberto Maria Merli
Police Commissioner
Robert Dawson
Robert Dawson
Embassy Employee
Antonio Cantafora
Antonio Cantafora
Vice Squad Chief Marini
Fiore Argento
Fiore Argento
Lucia Marini
Emanuel Bevilacqua
Emanuel Bevilacqua
Slot Machine Arcade Owner
Isabella Celani
Isabella Celani
Doctor
Giovanni Visentin
Giovanni Visentin
C.I.D. Chief
Alessandro Mistichelli
Alessandro Mistichelli
Anti-Hacker #2
Claudio Mazzenga
Claudio Mazzenga
Mario
Pier Maria Cecchini
Pier Maria Cecchini
Flying Squad Chief
Jennifer Poli
Jennifer Poli
Christine Girdler, First Victim
Gualtiero Scola
Gualtiero Scola
Crime Scene Investigator

Images

The Card Player Poster
The Card Player Poster

Detailed Information

General Information

Original Title: The Card Player

Creators: Hwang Dong-hyuk

Gender: Crime, Mystery, Thriller, Horror,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $2,600,000.00

Revenue: $3,368,452.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/15483

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

PHP com cURL

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

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

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

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