Auto Focus (2002)

A successful TV star during the 1960s, former Hogans Heroes actor Bob Crane projects a wholesome family-man image, but this front masks his persona as a sex addict who records and photographs his many encounters with women, often with the help of his seedy friend, John Henry Carpenter. This biographical drama reveals how Cranes double life takes its toll on him and his family, and ultimately contributes to his death.

2002
Drama
Crime
6.0
/71CQUn4vtpDQtAPXtaLP7IGH0Sg.jpg Poster

Cast

Michael McKean
Michael McKean
Video Executive
Willem Dafoe
Willem Dafoe
John Carpenter
Arden Myrin
Arden Myrin
Hippie Girl
Maria Bello
Maria Bello
Patricia Olson / Patrica Crane
Don McManus
Don McManus
Priest
Greg Kinnear
Greg Kinnear
Bob Crane
Joseph D. Reitman
Joseph D. Reitman
Hippie Boy
Kevin Beard
Kevin Beard
Hogan A.D.
Evis Xheneti
Evis Xheneti
Dinner Theater Actress (uncredited)
Kurt Fuller
Kurt Fuller
Werner Klemperer
Joe Grifasi
Joe Grifasi
Strip Club M.C.
Alex Meneses
Alex Meneses
Emily
Christopher Neiman
Christopher Neiman
Robert Clary
Ed Begley Jr.
Ed Begley Jr.
Mel Rosen
Kate Clarke
Kate Clarke
Dinner Theater Actress (uncredited)
Catherine Dent
Catherine Dent
Susan
John Kapelos
John Kapelos
Bruno Gerussi
Kevin Kilner
Kevin Kilner
Clayton Moore
Bruce Solomon
Bruce Solomon
Edward H. Feldman
Marieh Delfino
Marieh Delfino
Lori
Rita Wilson
Rita Wilson
Anne Crane
Nikita Ager
Nikita Ager
Julie
Lyle Kanouse
Lyle Kanouse
John Banner
Vyto Ruginis
Vyto Ruginis
Nickie D
Katie Lohmann
Katie Lohmann
Dallas Girl
Cassie Townsend
Cassie Townsend
Elaine
Michael E. Rodgers
Michael E. Rodgers
Richard Dawson
Gibby Brand
Gibby Brand
Judge
Jeff Harlan
Jeff Harlan
Armand
Owen Masterson
Owen Masterson
Jack Chapman
John Churchill
John Churchill
Dick Ryan (uncredited)
DonnaMarie Recco
DonnaMarie Recco
Melissa / Mistress Victoria
Kitana Baker
Kitana Baker
Schmile Girl
Shawn Reaves
Shawn Reaves
Bob Crane Jr. at 20
Ron Leibman
Ron Leibman
Lenny
Cheryl Lynn Bowers
Cheryl Lynn Bowers
Cynthia Lynn
Kelly Packard
Kelly Packard
Dawson's Blond
Roderick McCarthy
Roderick McCarthy
Bartender
Zen
Zen
Classic Cat Dancer
Zero
Zero
Classic Cat Dancer
Jennifer Piper
Jennifer Piper
Dinner Theater Actress
Danielle Petty
Danielle Petty
Interview Montage Girl #1
H.R. Haldeman
H.R. Haldeman
Self (archive footage) (uncredited)

Images

Auto Focus Poster
Auto Focus Poster

Detailed Information

General Information

Original Title: Auto Focus

Creators: Hwang Dong-hyuk

Gender: Drama, Crime,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $7,000,000.00

Revenue: $2,062,066.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/14112

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

PHP com cURL

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

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

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

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