Fifty Shades Darker (2017)

When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life, she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability, shadowy figures from Christians past start to circle the couple, determined to destroy their hopes for a future together.

2017
Drama
Romance
6.0
/8OXjaB4dkNggr9ySHEk9UqIXddU.jpg Poster

Cast

Eloise Mumford
Eloise Mumford
Kate Kavanagh
Bruce Altman
Bruce Altman
Jerry Roach
Shiraine Haas
Shiraine Haas
Gwen
Kim Basinger
Kim Basinger
Elena Lincoln
Fay Masterson
Fay Masterson
Mrs. Jones
Ellen Ewusie
Ellen Ewusie
Gallery Guest
Ashleigh LaThrop
Ashleigh LaThrop
Hannah
Victor Rasuk
Victor Rasuk
José
Dakota Johnson
Dakota Johnson
Anastasia Steele
Colin Lawrence
Colin Lawrence
Penthouse Restaurant Customer
Andrew Airlie
Andrew Airlie
Carrick Grey
Luke Grimes
Luke Grimes
Elliot Grey
Marcia Gay Harden
Marcia Gay Harden
Grace Trevelyan Grey
Robinne Lee
Robinne Lee
Ros Bailey
Bill Dow
Bill Dow
Willis
Jennifer Ehle
Jennifer Ehle
Carla
Max Martini
Max Martini
Taylor
Brooke Johnston
Brooke Johnston
Whispering Gallery Lady
Michael Meneer
Michael Meneer
Auctioneer
Bella Heathcote
Bella Heathcote
Leila
Lucia Walters
Lucia Walters
Penthouse Restaurant Customer
Michael St. John Smith
Michael St. John Smith
Auction Bidder
Michelle Harrison
Michelle Harrison
Auction Bidder
Carmel Amit
Carmel Amit
Whispering Guest at Masked Party
Jamie Dornan
Jamie Dornan
Christian Grey
Paniz Zade
Paniz Zade
Salon Receptionist
Eric Johnson
Eric Johnson
Jack Hyde
Derek Green
Derek Green
Auction Bidder
Dylan Neal
Dylan Neal
Bob
Rita Ora
Rita Ora
Mia Grey
Mark DeCarlo
Mark DeCarlo
News Anchor
Amy Price-Francis
Amy Price-Francis
Liz
Albert Nicholas
Albert Nicholas
Waiter
Stephan Miers
Stephan Miers
Hairdresser
Stephanie Florian
Stephanie Florian
News Reporter
Julia Dominczak
Julia Dominczak
Gretchen
Rob Compton
Rob Compton
Yacht Captain

Images

Fifty Shades Darker Poster
Fifty Shades Darker Poster

Video

trailer Oficial

Cinquenta Tons Mais Escuros - Trailer 1

trailer Oficial

Detailed Information

General Information

Original Title: Fifty Shades Darker

Creators: Hwang Dong-hyuk

Gender: Drama, Romance,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $55,000,000.00

Revenue: $381,545,846.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/341174

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

PHP com cURL

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

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

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

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