Prime Suspect (1991)

Highly skilled Detective Inspector Jane Tennison battles to prove herself in a male dominated world.

1991
Drama
Crime
Mystery
7.0
/vhlbnMgz9hBouXWmxBS2RjFC03S.jpg Poster

Episodes

Episódio 1
1h 43min
Episódio 1
Episódio 1
The making of Prime Suspect combines unseen footage with exclusive case and crew interviews, revealing all about this groundbreaking series and uncovering the truth behind the fiction.
2006-08-27
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
DCI Shefford dies suddenly whilst investigating a murder case. Jane Tennison is given the opportunity to take over the investigation which involves the brutal murder of a young girl. The girl's body has been badly mutilated and her hands have been tied behind her back. Jane suspects that it is the work of George Marlow. Jane also has to win the respect and approval of her male colleagues.
1991-04-07
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
The investigation continues.
1991-04-08
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
The body of a teenage girl is found and the investigation leads Jane into a community who distrust the police. Jane has recently had an affair with DS Bob Oswalde and he is assigned to the case. David Harvey confesses to the murder but neither Jane or Bob believe him. Bob is convinced that it is really the girl's young neighbour Tony Allen. Together they are able to discover who the real murderer is.
1992-12-15
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
The investigation continues...
1992-12-16
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
Transferred to a new station with the new job of 'cleaning up the streets' of Soho, DCI Jane Tennison and her new team become involved in the seedy underworld of vice involving rent boys and transvestites, pornography and sickening abuse.
1993-12-19
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
A local photographer is questioned after being caught destroying evidence linking him with the victim, and further searches of his studio reveal some shocking video evidence.
1993-12-20
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
Following her promotion, Jane Tennison returns to Southampton Row to head an investigation into the murder of a young child.
1995-04-30
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
DS Tennison travels to a residential commuter suburb to investigate a murder which has been staged to look like suicide.
1995-05-07
8.7
Episódio 3
1h 43min
Episódio 3
Episódio 3
Detective Superintendent Jane Tennison finds her private and professional life in tatters when a series of murders lead to her old adversary, George Marlow.
1995-05-15
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
Jane Tennison has been transferred from the Met to Manchester and a drug runner is shot dead returning to his apartment and Tennison finds she is hot on the case.
1996-10-20
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
Tennison's error of judgement has cost a young boy his life. She must use all her ingenuity to trap the man she believes is responsible.
1996-10-21
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
Detective Superintendent Jane Tennison has a new case when a woman who is found to be an illegal Bosnian refugee is found dead.
2003-11-09
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
Tennison travels to Bosnia where she makes a breakthrough, only to find her suspect is protected by the UK government.
2003-11-10
8.7
Episódio 1
1h 43min
Episódio 1
Episódio 1
Tony and Ruth Sturdy's 14 year old daughter Sallie is missing. Due to retire, this could be Tennison's last case: but she has more than this to contend with. Her father is seriously ill and she has turned to alcohol.
2006-10-15
8.7
Episódio 2
1h 43min
Episódio 2
Episódio 2
Curtis Flynn flees the scene of his brutal encounter with Tennison. As the end draws near the truth surrounding the death of Sallie finally emerges and the hunt for the killer ends in a shattering confrontation.
2006-10-22
8.7

Cast

Helen Mirren
Helen Mirren
Jane Tennison
Jay Mohr
Jay Mohr
Bullock

Images

Prime Suspect Poster
Prime Suspect Poster

Detailed Information

General Information

Original Title: Prime Suspect

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Mystery,

Seasons: 7

Episodes: 16

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

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/tv/2583

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

PHP com cURL

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

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

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

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