Suburbicon (2017)

In the quiet family town of Suburbicon during the 1950s, the best and worst of humanity is hilariously reflected through the deeds of seemingly ordinary people. When a home invasion turns deadly, a picture-perfect family turns to blackmail, revenge and murder.

2017
Drama
Crime
Mystery
Thriller
5.0
/rI4eEuDG2Oo7Msqw5COMUVPIBls.jpg Poster

Cast

Matt Damon
Matt Damon
Gardner Lodge
Noah Jupe
Noah Jupe
Nicky Lodge
Jack Conley
Jack Conley
Hightower
Megan Ferguson
Megan Ferguson
June
Steve Monroe
Steve Monroe
Mailman Henry
Julianne Moore
Julianne Moore
Margaret Lodge / Rose
Pamela Dunlap
Pamela Dunlap
Mrs. Krup
James Handy
James Handy
Mayor Billings
Oscar Isaac
Oscar Isaac
Bud Cooper
Sonia Gascón
Sonia Gascón
Pregnant Lady (uncredited)
Karimah Westbrook
Karimah Westbrook
Mrs. Mayers
Michael D. Cohen
Michael D. Cohen
Stretch
Glenn Fleshler
Glenn Fleshler
Ira Sloan
Gary Basaraba
Gary Basaraba
Uncle Mitch
Leith M. Burke
Leith M. Burke
Mr. Mayers
Mather Zickel
Mather Zickel
James
Richard Kind
Richard Kind
John Sears
Nancy Daly
Nancy Daly
Linda
Alex Hassell
Alex Hassell
Louis
Ellen Crawford
Ellen Crawford
Eileen
Tim Neff
Tim Neff
Protestor #4
Peggy Miley
Peggy Miley
Betty
Inbal Amirav
Inbal Amirav
Church Choir Singer (uncredited)
Mark Leslie Ford
Mark Leslie Ford
Bill Thackery
Vince Cefalu
Vince Cefalu
Chuck
Biff Yeager
Biff Yeager
Mr. Karger
Allan Wasserman
Allan Wasserman
Roger
Landon Gordon
Landon Gordon
Kid on Bike
Dean England
Dean England
Funeral Mourner (uncredited)
Corey Allen Kotler
Corey Allen Kotler
Bomber
Benjamin Franczuszki
Benjamin Franczuszki
Reporter
Dash Williams
Dash Williams
Walters (uncredited)
Gretchen Dickason
Gretchen Dickason
Passers by (uncredited)
Tony Espinosa
Tony Espinosa
Andy Mayers
Lauren Burns
Lauren Burns
Mitch's Secretary
Hope Banks
Hope Banks
Mrs Pendalton
Cathy Giannone
Cathy Giannone
Sylvia
Don Baldaramos
Don Baldaramos
Reverend Jones
Saraya Chanadet
Saraya Chanadet
Ohio Daughter (uncredited)
Weston Mueller
Weston Mueller
Perp #1 (uncredited)
Alessandro Delpiano
Alessandro Delpiano
Townhome kid (uncredited)
Avery Barkdull
Avery Barkdull
Grocery Store Kid (uncredited)
Blake Altounian
Blake Altounian
Frog (uncredited)

Images

Suburbicon Poster
Suburbicon Poster

Detailed Information

General Information

Original Title: Suburbicon

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Mystery, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $25,000,000.00

Revenue: $12,751,667.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/395458

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

PHP com cURL

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

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

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

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