Law & Order: Trial by Jury (2005)

The inner workings of the judicial system, beginning with the arraignment, and continuing through the prosecutors complicated process of building a case, investigating leads and preparing witnesses for trial.

2005
Drama
8.0
/9nVHqaRDRqLCMpA2DQW0XSQnu5j.jpg Poster

Episodes

Episódio 1
0h 42min
Episódio 1
Episódio 1
Tough New York Assistant D.A. Tracey Kibre tackles the murder of an aspiring Broadway actress but has little evidence to prosecute the suspect – an acclaimed but arrogant theater producer who smugly knows that the police have found no blood or even a body.
2005-03-03
8.7
Episódio 2
0h 42min
Episódio 2
Episódio 2
Kibre and Gaffney must prosecute an accused cop killer, who was shot by the police 41 times.
2005-03-04
8.7
Episódio 3
0h 42min
Episódio 3
Episódio 3
Kibre and Gaffney take on the job of prosecuting a man who is suspected of killing a pedophile, whom was recently paroled from prison.
2005-03-11
8.7
Episódio 4
0h 42min
Episódio 4
Episódio 4
Kibre must prosecute three boys, who implicate each other in a rape and murder, only she can't decide who is telling the truth.
2005-03-18
8.7
Episódio 5
0h 42min
Episódio 5
Episódio 5
Kibre and Gaffney must prosecute a nanny accused of killing the baby she was caring for by causing shaken baby syndrome. The only problem is they receive a judge who favors the defense since he was a former legal aid attorney.
2005-03-25
8.7
Episódio 6
0h 42min
Episódio 6
Episódio 6
Kibre tries a celebrity basketball star accused of raping and murdering his mistress. However, she runs into trouble when the star's wife has a slip of the tongue on the stand.
2005-04-01
8.7
Episódio 7
0h 42min
Episódio 7
Episódio 7
Kibre prosecutes a man who shot up the bank where he worked, killing the woman responsible for his son being in a coma. She runs into trouble when the man decides to represent himself, and the jury is sympathetic for him.
2005-04-08
8.7
Episódio 8
0h 42min
Episódio 8
Episódio 8
Kibre prosecutes an elusive career criminal for the murder of a sleazy ex-cop and the shooting of a detective. As Kibre's office works with Detective Fontana, they discover their prime suspect might also be a producer of snuff pornography. When a sting goes bad and a shocking courtroom development cuts the legs from under her case, Kibre's career teeters on finding why the shootings were committed in the first place. This crossover starts on Law & Order S15E20 Tombstone (I).
2005-04-15
8.7
Episódio 9
0h 42min
Episódio 9
Episódio 9
Kibre tries a man who got away with murder, and she is desperate to convict him.
2005-04-22
8.7
Episódio 10
0h 42min
Episódio 10
Episódio 10
Kibre prosecutes two cops for the murder of a man being held in custody, who was sodomized by the two officers. However, she hits a wall when none of the officers will talk about the events of the evening in question.
2005-04-29
8.7
Episódio 11
0h 42min
Episódio 11
Episódio 11
ADA Kibre works with Detectives Stabler and Benson to prosecute a serial rapist Gabriel whose trail of victims through the years has been whitewashed by his wealthy and protective mother Eleanor. Kibre must also overcome witness intimidation – and even sees her crucial DNA evidence tossed out – but the slippery suspect's lawyer has yet another surprise under his sleeve. The crossover starts on Law & Order: Special Victims Unit S06E20 Night (I).
2005-05-03
8.7
Episódio 12
0h 42min
Episódio 12
Episódio 12
Kibre prosecutes the man accused of murdering a transvestite, but she runs into trouble when his father confesses to the same crime.
2005-05-06
8.7
Episódio 13
0h 42min
Episódio 13
Episódio 13
Kibre and Gaffney are forced to prosecute a doorman who killed a homeless man while he attacked a frightened woman who lived in the building. After the woman tells the grand jury that she's been stalked for four months, thinking it was the homeless man, Kibre and Gaffney look into who the stalker was.
2006-01-21
8.7

Cast

Amy Carlson
Amy Carlson
Kelly Gaffney
Kirk Acevedo
Kirk Acevedo
Hector Salazar
Fred Thompson
Fred Thompson
Arthur Branch
Bebe Neuwirth
Bebe Neuwirth
Tracey Kibre

Where Watch

Images

Law & Order: Trial by Jury Poster
Law & Order: Trial by Jury Poster

Detailed Information

General Information

Original Title: Law & Order: Trial by Jury

Creators: Hwang Dong-hyuk

Gender: Drama,

Seasons: 1

Episodes: 13

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/3357

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

PHP com cURL

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

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

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

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