The Village (2019)

Welcome to the Village, an apartment building in Brooklyn that appears like any other from the outside but is quite unique inside. The people who reside here have built a bonded family of friends and neighbors.

2019
Drama
7.0
/yhOrzKjnNpKtNQuGABj5ygAc9Kn.jpg Poster

Episodes

Episódio 1
0h 43min
Episódio 1
Episódio 1
Sarah, a single mom, navigates life with her teenage daughter. Ava is thrown into crisis when she's arrested by ICE. Nick returns home from war to discover everything he's left behind. Ron and Patricia work to keep the Village family intact.
2019-03-19
8.7
Episódio 2
0h 43min
Episódio 2
Episódio 2
Sarah uncovers more of Katie's secret and has a confrontation with Nick. Enzo struggles with a disappointing new roommate. Ava makes progress with her case..
2019-03-26
8.7
Episódio 3
0h 43min
Episódio 3
Episódio 3
The Village family is made whole again when Ava returns. Sarah and Katie deal with unexpected reactions from the family of her baby's father. The strain of Patricia's cancer threatens her relationship with Ron. Gabe gets a surprise visit from his overbearing father. Nick confesses to a war friend's widow and makes a deep connection.
2019-04-02
8.7
Episódio 4
0h 43min
Episódio 4
Episódio 4
Katie faces key pregnancy decisions while tracking down an art thief. Sarah and Patricia spend a night out to clear their minds. Nick's memory plays tricks on him. Gabe and Ava look for outside help with her case. Enzo lets a lovely lady slip away.
2019-04-09
8.7
Episódio 5
0h 43min
Episódio 5
Episódio 5
Katie sees Sarah in a new light during her tumultuous first day of work at the nursing home. Nick makes a discovery in therapy and helps Enzo pursue a chance at love. Ron and Patricia host an open mic with a surprise performance from their past.
2019-04-16
8.7
Episódio 6
0h 43min
Episódio 6
Episódio 6
The first Gospel Brunch at Smalls not only introduces Ron and Patricia to people from their past, but also inspires the residents of The Village to come to terms with the various dilemmas in their lives: Enzo and Gabe discuss Ava's case with young lawyer, Sofia, Liam introduces Katie to her potential future, and Amy discovers surprising news about Nick and Sarah, leading to a revelation that none of them are ready to tackle.
2019-04-23
8.7
Episódio 7
0h 43min
Episódio 7
Episódio 7
As the dust settles on last night's revelation, the residents of the Village find themselves trying to put together the pieces: Ron and Patricia welcome two surprise houseguests with familial problems, Enzo enlists Ben to help him find Gwendolina, leading Ben back to someone from his past, Gabe finally faces his father when Ava's case gets messy, and Katie and Sarah temporarily bury the hatchet when meeting with a wealthy couple interested in adoption... However, when one door closes, another opens, and yet another revelation about Nick sends things over the edge.
2019-04-30
8.7
Episódio 8
0h 43min
Episódio 8
Episódio 8
With Christmas approaching, Ron tries to reunite the splintered village family. Nick visits an old haunt and makes an important discovery; Patricia glimpses a new life after receiving bad news. A surprise guest stirs up emotions between Ben and Ava.
2019-05-07
8.7
Episódio 9
0h 43min
Episódio 9
Episódio 9
The Village residents face individual fears while supporting Ava on the day of her immigration hearing. Gabe and Ava prepare for their day in court. Katie takes a birthing class. Nick attempts to gain closure with the help of Sarah.
2019-05-14
8.7
Episódio 10
0h 43min
Episódio 10
Episódio 10
Nenhuma descrição no momento!
2019-05-21
8.7

Cast

Frankie Faison
Frankie Faison
Ron Davis
Grace Van Dien
Grace Van Dien
Katie Campbell
Lorraine Toussaint
Lorraine Toussaint
Patricia Davis
Warren Christie
Warren Christie
Nick Porter
Daren Kagasoff
Daren Kagasoff
Gabe Napolitano
Moran Atias
Moran Atias
Ava Behzadi
Dominic Chianese
Dominic Chianese
Enzo Napolitano
Michaela McManus
Michaela McManus
Sarah Campbell

Where Watch

Images

The Village Poster
The Village Poster

Detailed Information

General Information

Original Title: The Village

Creators: Hwang Dong-hyuk

Gender: Drama,

Seasons: 1

Episodes: 10

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

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

PHP com cURL

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

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

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

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