The Moodys (2019)

Follow a tight-knit, but slightly dysfunctional, family through their misadventures.

2019
Drama
Comedy
5.0
/fsAsUhIvWxJCAK04l2PCviReLij.jpg Poster

Episodes

Episódio 1
0h 22min
Episódio 1
Episódio 1
Freshly single, Dan returns to his childhood home for Christmas to find it’s in various stages of disarray, with one functioning bathroom. As the extended family gathers for a welcome meal, Dan meets Cora, with whom he instantly clicks.
2019-12-04
8.7
Episódio 2
0h 22min
Episódio 2
Episódio 2
In an unexpected turn of events, all the Moodys find themselves living under the same roof again when Bridget, who lives in the Chicago area, returns to her childhood home with a suitcase in hand after a fight with her husband.
2019-12-04
8.7
Episódio 3
0h 22min
Episódio 3
Episódio 3
Christmas caroling is a Moody tradition that Sean Sr. does not take lightly. However, when an unexpected guest shows up to the Moody house, caroling takes a hilariously embarrassing turn.
2019-12-09
8.7
Episódio 4
0h 22min
Episódio 4
Episódio 4
Sean Jr. finally agrees to join Sean Sr.’s Moody Heating and AC business, but trouble ensues when a rival company infringes on their territory. Meanwhile, Bridget finds someone in whom to confide, while Dan struggles with the guilt of being interested in cousin Marco’s girlfriend, Cora.
2019-12-09
8.7
Episódio 5
0h 22min
Episódio 5
Episódio 5
With Christmas quickly approaching, Sean Sr. receives the top honor as the lector of Midnight Mass. Meanwhile, when Sean Sr. invites some unexpected guests to Christmas Eve dinner, Ann starts to unravel.
2019-12-10
8.7
Episódio 6
0h 22min
Episódio 6
Episódio 6
Just when the Moodys think things couldn’t possibly get worse, they are faced with a devastating challenge. All Ann wanted was a nice, white Christmas!
2019-12-10
8.7
Episódio 1
0h 22min
Episódio 1
Episódio 1
The Moodys picks up with Sean Sr. contemplating retirement – road trips across the country in an RV with Ann, while Sean Jr. takes over the family HVAC business.
2021-04-01
8.7
Episódio 2
0h 22min
Episódio 2
Episódio 2
Ann has no intention of leaving her new psychology practice, and Sean Jr. continues to brew up schemes to get rich quick.
2021-04-01
8.7
Episódio 3
0h 22min
Episódio 3
Episódio 3
After a brief reconciliation, Dan and Cora break up again, sending him back home to his parents' house. Ann then forces Dan into an unwanted therapy session with her friend, Grace.
2021-04-08
8.7
Episódio 4
0h 22min
Episódio 4
Episódio 4
Sean Sr. copes with ill feelings after being benched on his hockey team right before the South Side Championship game. Meanwhile, Ann has her first session as a psychologist and the family sees more of her mentor, Grace.
2021-04-15
8.7
Episódio 5
0h 22min
Episódio 5
Episódio 5
Sean Sr. struggles with back pain, so Bridget's old friend, Nick, comes around to help. Ann becomes suspicious about Dan's love life, as he makes an important decision. Meanwhile, Marco and Sean Jr.'s business is growing.
2021-04-22
8.7
Episódio 6
0h 22min
Episódio 6
Episódio 6
Ann discovers a secret that Dan and her mentor, Grace, have been hiding, as Sean Moody Sr. attempts to play matchmaker for Bridget. Meanwhile, Sean Jr. and Marcus make their very first sale.
2021-06-06
8.7
Episódio 7
0h 22min
Episódio 7
Episódio 7
Sean Sr. reconsiders his retirement plans, while Ann has second thoughts about her career. Meanwhile, Dan and Cora bump into each other again, Sean Jr. gets serious about his future and Bridget's relationship with Nick gets complicated.
2021-06-06
8.7
Episódio 8
0h 22min
Episódio 8
Episódio 8
The Moody family gathers once again for a wedding when something sudden shocks the entire family. Meanwhile, Sean Jr. and Marco make amends and things turn around for Bridget's love life.
2021-06-20
8.7

Cast

Elizabeth Perkins
Elizabeth Perkins
Ann Moody
Jay Baruchel
Jay Baruchel
Sean Moody Jr.
Denis Leary
Denis Leary
Sean Moody Sr.
François Arnaud
François Arnaud
Dan Moody
Chelsea Frei
Chelsea Frei
Bridget Moody

Where Watch

Images

The Moodys Poster
The Moodys Poster

Detailed Information

General Information

Original Title: The Moodys

Creators: Hwang Dong-hyuk

Gender: Drama, Comedy,

Seasons: 2

Episodes: 14

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/95681

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

PHP com cURL

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

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

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

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