Crime Story (1993)

A special agent is assigned to protect a wealthy business magnate. However, when the businessman is kidnapped in a daring ambush, he teams up with a seasoned detective to crack the case. But soon he discovers the case isnt that simple.

1993
Drama
Crime
Action
Thriller
6.0
/6rK0xhMQ04muMKRY1m2GBkmHd47.jpg Poster

Cast

Jackie Chan
Jackie Chan
Inspector Eddie Chan
Rocky Lai Keung-Ken
Rocky Lai Keung-Ken
Black Dragon's Gangster / Restaurant Owner
Ken Lo Wai-Kwong
Ken Lo Wai-Kwong
Wu Kuo-Jen
William Duen Wai-Lun
William Duen Wai-Lun
Superintendent Cheung
Mars
Mars
Robber (uncredited)
Chan Tat-Kwong
Chan Tat-Kwong
Robber (uncredited)
Sam Wong Ming-Sing
Sam Wong Ming-Sing
Robber (uncredited)
Nicky Li Chung-Chi
Nicky Li Chung-Chi
Kidnapper's Thug
Jacky Cheung Chun-Hung
Jacky Cheung Chun-Hung
CID (uncredited)
Wong Man-Chun
Wong Man-Chun
Policeman (uncredited)
James Ha Chim-Si
James Ha Chim-Si
Kidnapper
Jameson Lam Wa-Fan
Jameson Lam Wa-Fan
CID (uncredited)
Paul Chung Fat
Paul Chung Fat
Wu Kuo-Hua
Lam Foo-Wai
Lam Foo-Wai
Construction Worker (uncredited)
Cheung Wing-Cheung
Cheung Wing-Cheung
Construction Worker (uncredited)
Kent Cheng Jak-Si
Kent Cheng Jak-Si
Detective Hung Ting-Bong
Wan Seung-Lam
Wan Seung-Lam
Yen Chi-Sheng
Choi Kwok-Keung
Choi Kwok-Keung
Black Dragon's Gangster (uncredited)
Tenky Tin Kai-Man
Tenky Tin Kai-Man
Hung's Thug
Blackie Ko Sau-Leung
Blackie Ko Sau-Leung
Captain Ko
Wang Yao
Wang Yao
Kidnapper in Taiwan (uncredited)
Wan Fat
Wan Fat
Simon Ting
John Cheung Chan-Sang
John Cheung Chan-Sang
Bank Employee (uncredited)
Choi Kin-Shing
Choi Kin-Shing
CID (uncredited)
Wong Man-Shing
Wong Man-Shing
Robber (uncredited)
Christine Ng Wing-Mei
Christine Ng Wing-Mei
Gaga
Law Kar-Ying
Law Kar-Ying
Wong Yat-Fei
Chan Ging-Chi
Chan Ging-Chi
Construction Worker (uncredited)
Leung Gam-San
Leung Gam-San
Data Center Manager (uncredited)
Wong Chi-Wai
Wong Chi-Wai
Black Dragon (uncredited)
Chang Kin-Yung
Chang Kin-Yung
Policeman (uncredited)
Simon Cheung Yuk-San
Simon Cheung Yuk-San
Policeman (uncredited)
Leung Kei-Hei
Leung Kei-Hei
CID (uncredited)
Wong Ching-Lam
Wong Ching-Lam
Black Dragon's Gangster (uncredited)
Susanna Au-Yeung Pui-San
Susanna Au-Yeung Pui-San
Sum Yue
Pan Lingling
Pan Lingling
Joyce
Chang Kin-Ming
Chang Kin-Ming
Construction Worker (uncredited)
Leung Hung
Leung Hung
Construction Worker (uncredited)
Chan Yuet-Yue
Chan Yuet-Yue
Mother of Boy in Burning Building (uncredited)

Images

Crime Story Poster
Crime Story Poster

Detailed Information

General Information

Original Title: Crime Story

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $194,720.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/18857

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

PHP com cURL

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

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

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

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