Happy Together (2018)

A thirty-something couple, tired of their mundane life, starts to reconnect with their younger, cooler selves when an emerging pop star, who is drawn to their super-normal suburban life, moves in.

2018
Comedy
7.0
/h9vLHRPf4OxxiYEh9vqxBfRDLcJ.jpg Poster

Episodes

Episódio 1
0h 21min
Episódio 1
Episódio 1
Jake, an accountant, and his dream wife, Claire, a restaurant and bar designer, are very comfortably settled into their marriage, enjoying evenings together on the couch watching TV and scheduling time to change their outgoing voicemail message. Their tame routine gets a makeover when Jake’s client, exuberant music superstar Cooper James, arrives on their doorstep looking for refuge from the paparazzi following a high-profile break-up with his girlfriend. Jake and Claire quickly discover there’s no way they can keep up with their world-famous houseguest’s effortlessly cool, fast-paced lifestyle. Cooper, however, enjoys Jake and Claire’s more relaxed way of life, discovering that a touch of ordinary can be extraordinary for all three of them.
2018-10-01
8.7
Episódio 2
0h 22min
Episódio 2
Episódio 2
Jake and Claire attempt to follow Cooper’s minimalist lifestyle by “scrubbing” their home of all their old and forgotten belongings. However, they find that letting go of the past is harder than it seems.
2018-10-08
8.7
Episódio 3
0h 22min
Episódio 3
Episódio 3
When Cooper has to get in shape for an underwear ad, Jake and Claire are inspired to ditch their junk food and join his ultra-healthy lifestyle. With the help of Cooper and his trainer, Antoine, Jake and Claire go on the most intense diet and exercise program of their lives.
2018-10-15
8.7
Episódio 4
0h 22min
Episódio 4
Episódio 4
When Claire contracts the flu, Jake tries to prove to her parents that he can take care of her without their help. He even makes Claire's favorite lettuce wraps, but a flaw in his plan surfaces when everyone who eats the wraps gets food poisoning.
2018-10-22
8.7
Episódio 5
0h 22min
Episódio 5
Episódio 5
When Jake's father Mike arrives for a visit, it seems like their best friend relationship has picked up right where it left off. However, Jake becomes hurt when Mike opens up to Cooper about something personal instead of sharing it with him.
2018-10-29
8.7
Episódio 6
0h 22min
Episódio 6
Episódio 6
When Cooper turns to Jake and Claire for advice on a big romantic gesture to impress a popular singer, they realize they should start making grand gestures in their own relationship.
2018-11-05
8.7
Episódio 7
0h 22min
Episódio 7
Episódio 7
When Cooper asks Jake and Claire how they met, Jake keeps embellishing the story of their college romance, while Claire points out the real details of their early relationship.
2018-11-12
8.7
Episódio 8
0h 22min
Episódio 8
Episódio 8
Jake and Claire worry that Bonnie and Gerald are partying too hard in their retirement. Also, Cooper seeks inspiration for a new song.
2018-11-19
8.7
Episódio 9
0h 22min
Episódio 9
Episódio 9
Cooper helps Jake prepare for a big work presentation, and they both realize that everyone always agrees with Cooper only because he is famous. Jake asks Claire for the same kind of encouragement, while Cooper decides to seek out more honest opinions of his work.
2018-12-03
8.7
Episódio 10
0h 22min
Episódio 10
Episódio 10
When one of Cooper's stalkers sneaks into Jake and Claire's house, they reluctantly decide to install a home security system.
2018-12-10
8.7
Episódio 11
0h 22min
Episódio 11
Episódio 11
Jake worries about their finances when Claire quits her job to pursue her passion; Cooper turns to Bonnie and Gerald for financial advice.
2018-12-17
8.7
Episódio 12
0h 22min
Episódio 12
Episódio 12
When Cooper gives Jake and Claire an anniversary gift featuring their original wedding vows, tensions rise as they attempt to take their vows literally.
2019-01-07
8.7
Episódio 13
0h 22min
Episódio 13
Episódio 13
Jake and Claire decide to leave the comfort of their cozy bed for a wild night out as Cooper performs an intimate concert to debut new music.
2019-01-14
8.7

Cast

Damon Wayans Jr.
Damon Wayans Jr.
Jake Davis
Chris Parnell
Chris Parnell
Wayne
Amber Stevens West
Amber Stevens West
Claire Davis
Victor Williams
Victor Williams
Gerald Wheeler
Stephnie Weir
Stephnie Weir
Bonnie Wheeler
Felix Mallard
Felix Mallard
Cooper James

Where Watch

Images

Happy Together Poster
Happy Together Poster

Detailed Information

General Information

Original Title: Happy Together

Creators: Hwang Dong-hyuk

Gender: Comedy,

Seasons: 1

Episodes: 13

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

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/tv/79583

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

PHP com cURL

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

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

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

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