Beautiful Boy (2018)

After he and his first wife separate, journalist David Sheff struggles to help their teenage son, who goes from experimenting with drugs to becoming devastatingly addicted to methamphetamine.

2018
Drama
7.0
/ut5sNIXsNb9tHnVJ090V13im4A8.jpg Poster

Cast

Amy Ryan
Amy Ryan
Vicki Sheff
Timothée Chalamet
Timothée Chalamet
Nic Sheff
Maura Tierney
Maura Tierney
Karen Barbour
Kaitlyn Dever
Kaitlyn Dever
Lauren
Carlton Wilborn
Carlton Wilborn
Vince
LisaGay Hamilton
LisaGay Hamilton
Rose
Steve Carell
Steve Carell
David Sheff
Andre Royo
Andre Royo
Spencer
Stefanie Scott
Stefanie Scott
Julia
Julian Works
Julian Works
Gack
Christian Convery
Christian Convery
Jasper Sheff
Jack Dylan Grazer
Jack Dylan Grazer
12-Year-Old Nic Sheff
Amy Forsyth
Amy Forsyth
Diane
Amy Aquino
Amy Aquino
Annie Goldblum
Kue Lawrence
Kue Lawrence
5-Year-Old Nic Sheff
Timothy Hutton
Timothy Hutton
Dr. Brown
Tom Beyer
Tom Beyer
Meeting Leader
Oakley Bull
Oakley Bull
Daisy Sheff
Edward Fletcher
Edward Fletcher
Minister
Zachary Rifkin
Zachary Rifkin
8-Year-Old Nic Sheff
Ricky Low
Ricky Low
Destiny
Marypat Farrell
Marypat Farrell
Julia's Mother
Brandon James Cienfuegos
Brandon James Cienfuegos
Kid
Cheska Corona
Cheska Corona
Kid
Mandeiya Flory
Mandeiya Flory
Kid
Martha T. Newman
Martha T. Newman
Flight Attendant
Minerva García
Minerva García
Nurse @ Bellevue
Nikki Snipper
Nikki Snipper
Airline Attendant
Anastasia Leddick
Anastasia Leddick
Speaker @ 12 Step Meeting
Justin Townes Earle
Justin Townes Earle
Wedding Guest
Seann Gallagher
Seann Gallagher
Father @ Graduation
Brooklin Thacher
Brooklin Thacher
Principal @ Graduation
Sasha Kelly Jackson
Sasha Kelly Jackson
EMT
David Mendenhall
David Mendenhall
Rocker (uncredited)

Images

Beautiful Boy Poster
Beautiful Boy Poster

Video

trailer Oficial

Querido Menino | Trailer Legendado

trailer Oficial

Detailed Information

General Information

Original Title: Beautiful Boy

Creators: Hwang Dong-hyuk

Gender: Drama,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $25,000,000.00

Revenue: $31,749,905.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/451915

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

PHP com cURL

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

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

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

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