Pasadena (2001)

Lily McAllister has lived a charmed life as part of the most powerful family in the upscale Southern California enclave of Pasadena. All that changes, however, when a murder and coverup in her own mansion thrusts Lily into a search to unlock her familys long-buried secrets.

2001
Soap
Drama
5.0
/jY9NdQKNlUJswTycfN7yqhjpVKc.jpg Poster

Episodes

Episódio 1
Episódio 1
Episódio 1
A young mother is at the center of a powerful family that stops at nothing to protect its seemingly perfect world.
2001-09-28
8.7
Episódio 2
Episódio 2
Episódio 2
Lily and Henry continue to investigate Phillip Parker's suicide, and George must choose between Robert and Will to succeed him.
2001-10-05
8.7
Episódio 3
Episódio 3
Episódio 3
Lily loses interest in the Parker mystery, much to Henry's vexation.
2001-10-26
8.7
Episódio 4
Episódio 4
Episódio 4
George's retirement party brings out the worst in the Greeley clan.
2001-11-02
8.7
Puppy Love
Episódio 5
Puppy Love
Catherine's behaviour becomes increasingly erratic, and Robert continues to fume over Will's success at the paper.
8.7
The Body
Episódio 6
The Body
Henry refuses to stop seeing Lily, and Nate becomes convinced that there is a body buried in his parents' yard.
8.7
The Bones
Episódio 7
The Bones
George and Lilian return home to find Nate digging up their yard.
8.7
Run Lily Run
Episódio 8
Run Lily Run
Henry and Lily leave the bones behind as Lily calls the cops, while Robert steals and destroys the bones in the meantime.
8.7
Someone to Talk To
Episódio 9
Someone to Talk To
Lily begins seeing a psychologist, who believes her memories of the murder are really a manifestation of her hostility against her mother.
8.7
A River in Egypt
Episódio 10
A River in Egypt
Will's suspicions are aroused, Lily dates her psychologist's son, and Catherine wants to take down Robert's new girlfriend.
8.7
The Truth Hurts
Episódio 11
The Truth Hurts
Henry's return threatens to expose a murder, and Glen encourages Catherine to acknowledge their affair.
8.7
A Lie Is Worth Fighting For
Episódio 12
A Lie Is Worth Fighting For
Robert attacks Henry, he escapes and tells Lily what happened.
8.7
Don't It Always Seem to Go...
Episódio 13
Don't It Always Seem to Go...
Lily tries to get a taped confession to find out the truth, and Henry goes on a rampage when he discovers that Tom has been killed.
8.7

Cast

Philip Baker Hall
Philip Baker Hall
George Reese Greeley
Barbara Babcock
Barbara Babcock
Lillian Greeley
Derek Cecil
Derek Cecil
Tom Bellow
Alison Lohman
Alison Lohman
Lily McAllister
Balthazar Getty
Balthazar Getty
Nate Greeley
Mark Valley
Mark Valley
Robert Greeley
Dana Delany
Dana Delany
Catherine McAllister
Martin Donovan
Martin Donovan
Will McAllister
Christopher Rodriguez Marquette
Christopher Rodriguez Marquette
Mason McAllister
Natasha Gregson Wagner
Natasha Gregson Wagner
Beth Greeley
Nicole Paggi
Nicole Paggi
Jennie Bradbury

Images

Pasadena Poster
Pasadena Poster

Detailed Information

General Information

Original Title: Pasadena

Creators: Hwang Dong-hyuk

Gender: Soap, Drama,

Seasons: 1

Episodes: 22

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

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

PHP com cURL

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

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

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

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