As Good as It Gets (1997)

A misanthropic author, a single mother and waitress, and a gay artist form an unlikely friendship after the artist is assaulted in a robbery.

1997
Drama
Romance
Comedy
7.0
/yth2a1cCkccfzf8cXRhdcUJuApu.jpg Poster

Cast

Maya Rudolph
Maya Rudolph
Policewoman
Skeet Ulrich
Skeet Ulrich
Vincent Lopiano
Jamie Kennedy
Jamie Kennedy
Street Hustler
Julie Benz
Julie Benz
Receptionist
Brian Doyle-Murray
Brian Doyle-Murray
Handyman
Tara Subkoff
Tara Subkoff
Cafe 24 Waitress
Tom McGowan
Tom McGowan
Maitre'd
Missi Pyle
Missi Pyle
Cafe 24 Waitress
Yeardley Smith
Yeardley Smith
Jackie Simpson
Cuba Gooding Jr.
Cuba Gooding Jr.
Frank Sachs
Peter Jacobson
Peter Jacobson
Man at Table
Wood Harris
Wood Harris
Cafe 24 Busboy
Greg Kinnear
Greg Kinnear
Simon Bishop
Bibi Osterwald
Bibi Osterwald
Neighbor Woman
Maurice LaMarche
Maurice LaMarche
Fred Bishop - Simon's Dad on Phone (voice) (uncredited)
Matt Malloy
Matt Malloy
Men's Store Salesman
Ava Lee Scott
Ava Lee Scott
New Yorker
Helen Hunt
Helen Hunt
Carol Connelly
Lupe Ontiveros
Lupe Ontiveros
Nora Manning
Randall Batinkoff
Randall Batinkoff
Carol's Date
Kathryn Morris
Kathryn Morris
Psychiatric Patient
Leslie Stefanson
Leslie Stefanson
Cafe 24 Waitress
Jack Nicholson
Jack Nicholson
Melvin Udall
Harold Ramis
Harold Ramis
Dr. Bettes
Shane Black
Shane Black
Cafe 24 Manager
Lisa Edelstein
Lisa Edelstein
Woman at Table
Jesse James
Jesse James
Spencer Connelly
Shirley Knight
Shirley Knight
Beverly Connelly
Linda Gehringer
Linda Gehringer
Publisher
Frank Slaten
Frank Slaten
Miffed Party Goer (uncredited)
Amy Anzel
Amy Anzel
Ballet Dancer (uncredited)
Lawrence Kasdan
Lawrence Kasdan
Dr. Green
Alice Vaughn
Alice Vaughn
Partygoer
Annie Maginnis Tippe
Annie Maginnis Tippe
Daughter at Table
Jimmy Workman
Jimmy Workman
Sean from the Bakery
Paul Greenberg
Paul Greenberg
Bar Waiter
Kaitlin Hopkins
Kaitlin Hopkins
Woman in Lobby
Dr. David A. Kipper
Dr. David A. Kipper
Hospital Doctor
Bernadette Balagtas
Bernadette Balagtas
Caterer
Ross Bleckner
Ross Bleckner
Carl
Kristi Zea
Kristi Zea
Mother at Table
Patricia Childress
Patricia Childress
Cafe 24 Waitress
Rebekah Johnson
Rebekah Johnson
Cafe 24 Waitress
Justin Herwick
Justin Herwick
Street Hustler
Antonia Jones
Antonia Jones
Nurse
Danielle Spencer
Danielle Spencer
Veterinarian
Todd Solondz
Todd Solondz
Man on Bus
Danielle Brisebois
Danielle Brisebois
Singer

Images

As Good as It Gets Poster
As Good as It Gets Poster

Detailed Information

General Information

Original Title: As Good as It Gets

Creators: Hwang Dong-hyuk

Gender: Drama, Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $50,000,000.00

Revenue: $314,178,011.00

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/movie/2898

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

PHP com cURL

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

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

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

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