The Last Days of American Crime (2020)

In the not-too-distant future, as a final response to crime and terrorism, the U.S. government plans to broadcast a signal that will make it impossible for anyone to knowingly break the law.

2020
Crime
Action
Thriller
6.0
/ygCQnDEqUEIamBpdQdDYnFfxvgM.jpg Poster

Cast

Carel Nel
Carel Nel
Male Tweeker
Tanya van Graan
Tanya van Graan
Reporter 2
Grant Ross
Grant Ross
Reporter 1
Alonso Grandio
Alonso Grandio
Check Point Ranger
Stephen Jennings
Stephen Jennings
Senator on TV
Sharlto Copley
Sharlto Copley
William Sawyer
Michael Pitt
Michael Pitt
Kevin Cash
Patrick Bergin
Patrick Bergin
Rossi Dumois
Edgar Ramírez
Edgar Ramírez
Graham Bricke
James Richard Marshall
James Richard Marshall
Posner
Sean Cameron Michael
Sean Cameron Michael
Pete Slatery
Tony Caprari
Tony Caprari
Jim Schneider
Tamer Burjaq
Tamer Burjaq
Ross King
Nathan Lynn
Nathan Lynn
Johnny Dee
Jonathan Boynton-Lee
Jonathan Boynton-Lee
API Security Guard
Brandon Auret
Brandon Auret
Lonnie French
Daniel Fox
Daniel Fox
Rory Bricke
Robert Hobbs
Robert Hobbs
Police Sergeant
Leandie du Randt
Leandie du Randt
Connie Dumois
Jonathan Pienaar
Jonathan Pienaar
Randy Hickey
Matt Newman
Matt Newman
News Anchor 2
Terence Maynard
Terence Maynard
Chucky
Inge Beckmann
Inge Beckmann
Carillo / Female Cop
Jay Anstey
Jay Anstey
Female Terrified Officer
Norman Anstey
Norman Anstey
Collins
Craig Urbani
Craig Urbani
Thick
Michael Bierman
Michael Bierman
Dump Truck Driver
Kevin Otto
Kevin Otto
Government Official
Lionel Newton
Lionel Newton
Jack Morgan
Neels Clasen
Neels Clasen
Sidell Turner
Garth Collins
Garth Collins
300LB Thug
DeVille Vannik
DeVille Vannik
Garage Guard
Anna Brewster
Anna Brewster
Shelby Dupree
Clayton Boyd
Clayton Boyd
Tech Nerd
Bruce Winant
Bruce Winant
Voice of News Anchor 2
Vaughn Lucas
Vaughn Lucas
Garbage Dock Guard
Kate Normington
Kate Normington
News Anchor 1
De Klerk Oelofse
De Klerk Oelofse
Thin
Kristen Raath
Kristen Raath
Lesbian 1
Shoko Yoshimura
Shoko Yoshimura
Lesbian 2
Nhlakanipho Manqele
Nhlakanipho Manqele
Male Cop
Candice Weber
Candice Weber
Female Tweeker
Ramey Short
Ramey Short
Law Enforcer 2
Kabelo Bouga Chalatsane
Kabelo Bouga Chalatsane
Gate Guard

Images

The Last Days of American Crime Poster
The Last Days of American Crime Poster

Video

trailer Oficial

The Last Days of American Crime | Trailer oficial | Netflix

trailer Oficial

Detailed Information

General Information

Original Title: The Last Days of American Crime

Creators: Hwang Dong-hyuk

Gender: Crime, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $0.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/339095

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

PHP com cURL

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

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

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

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