The Code (2019)

The militarys brightest minds tackle the countrys toughest legal challenges at the Marine Corps Base Quantico, where every attorney is trained as a prosecutor, a defense lawyer, an investigator, and a Marine. Working side-by-side, they serve their country with integrity while often putting aside ideals for the sake of the truth.

2019
Drama
6.0
/ruZu6Y4Iq5EkgaCeR80bpr64kUT.jpg Poster

Episodes

Episódio 1
0h 43min
Episódio 1
Episódio 1
When a soldier in Afghanistan kills his commanding officer, Judge Advocates Capt. John “Abe” Abraham and Capt. Maya Dobbins are assigned to the case as prosecution and defense lawyers by their commanding officer, Col. Glenn Turnbull.
2019-04-09
8.7
Episódio 2
0h 43min
Episódio 2
Episódio 2
Captains John Abraham and Maya Dobbins head to a war zone when they are assigned to opposite sides of the courtroom in the case of Marine charged with abandoning his post during combat, resulting in the deaths of three soldiers. Also, Major Trey Ferry must iron out a diplomatic spat, and Lt. Harper Li works to balance her duties to the Corps with planning her wedding.
2019-04-15
8.7
Episódio 3
0h 43min
Episódio 3
Episódio 3
Major Ferry and Lt. Li are assigned to find out who leaked information about a Marine who was set to become the Corps’ first female Infantry Captain, which may have led to her attack. Also, Capt. Abraham is approached by his best friend’s widow, Alex, who is considering suing the Corps for her husband’s wrongful death and may ask him to testify.
2019-04-22
8.7
Episódio 4
0h 43min
Episódio 4
Episódio 4
When a dying Marine confesses his involvement in covering up the murder of an Iraqi civilian more than a decade ago, Abe and Trey are assigned to prosecute the accused killer - a sitting U.S. congressman. Also, Maya helps her brother prepare for his state senate race.
2019-04-29
8.7
Episódio 5
0h 43min
Episódio 5
Episódio 5
When two Marines are accidentally killed in a weapons test, Abe and Harper square off against Trey as prosecution and defense for the soldier who is accused of tampering with the system. Also, Abe helps out his best friend's widow, Alex, and Col. Turnbull gives Maya an important assignment.
2019-05-06
8.7
Episódio 6
0h 43min
Episódio 6
Episódio 6
Abe and Harper try to track down a website owner who is inciting violence by having Marines confront and expose civilians who are publicly pretending to serve in the Corps. Abe’s relationship with Alex becomes more complicated. Rami faces a crisis of conscience when he and his wife, Nazil, go for their citizenship test. Col. Turnbull anxiously awaits word on her son’s status after she approves an overseas airstrike.
2019-05-13
8.7
Episódio 7
0h 43min
Episódio 7
Episódio 7
Harper gets caught in a firefight when she, Abe and Maya travel to Syria to investigate a Marine accused of desertion. Col. Turnbull travels to Germany to be with her wounded son, Adam.
2019-05-20
8.7
Episódio 8
0h 43min
Episódio 8
Episódio 8
Abe and Harper travel to Afghanistan to investigate when an Afghan commander is killed on a U.S. base. When a Marine is accused of the crime, Trey and Maya join their colleagues to defend him in an on-base hearing. Col. Turnbull and her husband, Asa, disagree about how to handle their son Adam’s physical therapy.
2019-06-03
8.7
Episódio 9
0h 43min
Episódio 9
Episódio 9
Abe and Harper’s investigation into a Marine recruiter’s alleged misconduct may be derailed when the key witness refuses to testify.
2019-07-01
8.7
Episódio 10
0h 43min
Episódio 10
Episódio 10
When a Marine is accused of helping a terrorist escape from Guantanamo Bay, Abe and Harper believe that they have an open-and-shut case until they are mysteriously denied access to key evidence without explanation. Also, Trey and Maya attempt to get Rami reassigned back to their office.
2019-07-08
8.7
Episódio 11
0h 43min
Episódio 11
Episódio 11
Abe and Harper’s investigation into the accidental overdose of a Marine takes a turn when they can’t find any fingerprints – even the deceased’s – on the pill bottle, leading them to believe he was murdered. Also, Abe receives a warning about testifying in a lawsuit against the Corps, and Maya is concerned that her brother does not have his mental illness under control.
2019-07-15
8.7
Episódio 12
0h 43min
Episódio 12
Episódio 12
Abe's colleagues must defend - and reluctantly prosecute - him when he is arrested and court-martialed for mutiny in regard to a 2010 mission in Afghanistan where he was one of the only survivors.
2019-07-22
8.7

Cast

Luke Mitchell
Luke Mitchell
Captain John Abraham
Ato Essandoh
Ato Essandoh
Trey Ferry
Dana Delany
Dana Delany
Colonel Eisa Turnbull
Anna Wood
Anna Wood
Maya Dobbins
Phillipa Soo
Phillipa Soo
Harper Rein

Where Watch

Images

The Code Poster
The Code Poster

Detailed Information

General Information

Original Title: The Code

Creators: Hwang Dong-hyuk

Gender: Drama,

Seasons: 1

Episodes: 12

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

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

PHP com cURL

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

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

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

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