Crazy, Stupid, Love. (2011)

Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cals seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.

2011
Drama
Romance
Comedy
7.0
/4YzXVfBvFv9WdR0EChMacCr4Qwu.jpg Poster

Cast

Mekia Cox
Mekia Cox
Hip Hairdresser aka Tiffany
John Carroll Lynch
John Carroll Lynch
Bernie
Marisa Tomei
Marisa Tomei
Kate
Julianne Moore
Julianne Moore
Emily
Christopher Darga
Christopher Darga
Lowe's Salesman #1
Reggie Lee
Reggie Lee
Officer Huang
Joey King
Joey King
Molly
Wendy Worthington
Wendy Worthington
Woman (Who Gives Cal Tour)
Richard Steven Horvitz
Richard Steven Horvitz
Lowe's Salesman #3
Steve Carell
Steve Carell
Cal
Karolina Wydra
Karolina Wydra
Jordyn
Beth Littleford
Beth Littleford
Claire
Ryan Gosling
Ryan Gosling
Jacob
Jessica Diz
Jessica Diz
Olivia
Kevin Bacon
Kevin Bacon
David Lindhagen
Olga Fonda
Olga Fonda
Danielle (uncredited)
Emma Stone
Emma Stone
Hannah
Rich Hutchman
Rich Hutchman
Lowe's Salesman #2
Liza Lapira
Liza Lapira
Liz
Lio Tipton
Lio Tipton
Jessica
Christian Pitre
Christian Pitre
Waitress with Check
Joshua Sternlicht
Joshua Sternlicht
Bartender
Jenny Mollen
Jenny Mollen
Lisa
Zayne Emory
Zayne Emory
Robbie's Friend (Eric)
Charlie Hartsock
Charlie Hartsock
Sad Sack
Julianna Guill
Julianna Guill
Madison
AlgeRita Wynn
AlgeRita Wynn
Robbie's Principal
Dan Butler
Dan Butler
Cal's Boss
Tiara Parker
Tiara Parker
Gabby
Jonah Bobo
Jonah Bobo
Robbie
Crystal Reed
Crystal Reed
Amy Johnson
Rebecca Flinn-White
Rebecca Flinn-White
Hannah's Colleague #2
Tracy Mulholland
Tracy Mulholland
Megan
Katerina Mikailenko
Katerina Mikailenko
Stephanie
Josh Groban
Josh Groban
Richard
Joanne Brooks
Joanne Brooks
Waitress for Cal and Kate
Caitlin Thompson
Caitlin Thompson
Taylor
Janine Barris
Janine Barris
Heather
Laurel Coppock
Laurel Coppock
Sophia
Rasika Mathur
Rasika Mathur
Emily's Assistant
Michael John Long
Michael John Long
Bartender #3
Megan James
Megan James
Hannah's Colleague #1
Maija Polsley
Maija Polsley
Jacob's Date
Ami Haruna
Ami Haruna
Ami

Where Watch

Images

Crazy, Stupid, Love. Poster
Crazy, Stupid, Love. Poster

Detailed Information

General Information

Original Title: Crazy, Stupid, Love.

Creators: Hwang Dong-hyuk

Gender: Drama, Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $50,000,000.00

Revenue: $145,079,584.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/50646

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

PHP com cURL

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

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

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

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