Broke (2020)

Single suburban mother Jackie is shocked when her estranged sister, Elizabeth, her sisters outrageously wealthy, big-hearted husband, Javier, and Javiers fiercely loyal assistant/driver/friend land on her doorstep in need of a place to live after the couples money dries up.

2020
Comedy
5.0
/5im3hm58kN4M2bKZgXz8ZvFuRlh.jpg Poster

Episodes

Episódio 1
Episódio 1
Episódio 1
Jackie's sister and outrageously wealthy brother-in-law move in after the couple's money dries up.
2020-04-02
8.7
Episódio 2
Episódio 2
Episódio 2
Jackie encourages Javier and Elizabeth to get jobs so they can contribute financially to the household. Javier gets work as a rideshare driver and Elizabeth is employed as a personal shopper. Jackie worries Sammy will get hurt by Javier.
2020-04-09
8.7
Episódio 3
Episódio 3
Episódio 3
When Javier and Elizabeth learn their rich friends are in town, they muster up the courage to ask them to pay back the large amount of money they are owed. Also, Jackie complains of being undervalued at work, and Luis convinces her to ask for a raise.
2020-04-16
8.7
Episódio 4
Episódio 4
Episódio 4
Jackie and Elizabeth are scandalized when they find their mom's secret love letters that suggest she had an affair. Also, Javier takes an unexpected job as a painter
2020-04-23
8.7
Episódio 5
Episódio 5
Episódio 5
Javier and Elizabeth decide to help Jackie and Luis get back into the dating scene by setting them up on blind dates. Also, Elizabeth struggles to connect with Sammy.
2020-04-30
8.7
Episódio 6
Episódio 6
Episódio 6
Jackie gets into an argument with Javier when she discovers he’s been taking Sammy to church on Sundays. Also, when Elizabeth attends Luis’ spin class, he gets jealous when she garners the attention of the instructor.
2020-05-07
8.7
Episódio 7
Episódio 7
Episódio 7
Nenhuma descrição no momento!
2020-05-14
8.7
Episódio 8
Episódio 8
Episódio 8
When Jackie's angry outburst gets her banned from Sammy's soccer games and the coach quits, Javier steps in to coach the team. Also, Elizabeth tries to teach Jackie mindfulness and encourages her to apologize to the soccer league's commissioner.
2020-05-21
8.7
Episódio 9
Episódio 9
Episódio 9
When Jackie's ex-husband, Barry (guest star Kyle Bornheimer), unexpectedly shows up, she seizes the opportunity to gain full custody of Sammy. Also, Javier attempts to find a meaningful birthday gift for his wealthy father.
2020-05-28
8.7
Episódio 10
Episódio 10
Episódio 10
When Sammy’s big idea for his school project fails, his family stays up all night to help him finish the assignment on time. As Jackie and Barry work on the map, they argue over their different parenting styles. Also, as Javier and Elizabeth help with the timeline, they argue about how to plan financially for their future.
2020-06-04
8.7
Episódio 11
Episódio 11
Episódio 11
Jackie secures a liquor sponsor for the Cinco de Mayo party at Mitzy’s bar, and Javier is thrilled to be the emcee of the celebration. Also, Jackie gets jealous when she notices Barry flirting with the sponsor representative
2020-06-11
8.7
Episódio 12
Episódio 12
Episódio 12
Luis' dad, Don Dominguez, who works for Javier's wealthy father, arrives in town to test how Javier has handled being cut off financially. Also, Elizabeth agrees to help Jackie on a job and runs into her ex-boyfriend, Nick Murray.
2020-06-18
8.7
Episódio 13
Episódio 13
Episódio 13
When Sammy's birthday party location suddenly falls through, the family rushes to set up the celebration in the backyard and is surprised by an unexpected guest. Also, Javier and Elizabeth decide to look for their own apartment.
2020-06-25
8.7

Cast

Kyle Bornheimer
Kyle Bornheimer
Barry
Pauley Perrette
Pauley Perrette
Jackie Dixon
Natasha Leggero
Natasha Leggero
Elizabeth 'Lizzie' Dixon-Flores
Jaime Camil
Jaime Camil
Javier Flores
Antonio Raul Garcia
Antonio Raul Garcia
Sammy Flebotte
Izzy Diaz
Izzy Diaz
Luis

Where Watch

Images

Broke Poster
Broke Poster

Detailed Information

General Information

Original Title: Broke

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

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

PHP com cURL

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

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

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

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