Doctor Dolittle (1998)

A successful physician and devoted family man, John Dolittle seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctors advice, unleashing an outrageous chain of events that turns his world upside down!

1998
Family
Fantasy
Comedy
5.0
/tLrchGMIkdo1KamQJA6fwvDQEy0.jpg Poster

Cast

Albert Brooks
Albert Brooks
Tiger (voice)
Julie Kavner
Julie Kavner
Female Pigeon (voice)
Crystal the Monkey
Crystal the Monkey
Drunk Monkey (uncredited)
Spencer Kayden
Spencer Kayden
Circus Audience (uncredited)
Oliver Platt
Oliver Platt
Dr. Mark Weller
Jonathan Lipnicki
Jonathan Lipnicki
Baby Tiger (voice)
Brian Doyle-Murray
Brian Doyle-Murray
Old Beagle (voice)
John Leguizamo
John Leguizamo
Rat #2 (Voice)
Paul Reubens
Paul Reubens
Raccoon (voice)
Steven Gilborn
Steven Gilborn
Dr. Litvack
Ossie Davis
Ossie Davis
Archer Dolittle
Kristen Wilson
Kristen Wilson
Lisa
Paul Giamatti
Paul Giamatti
Blaine (uncredited)
Norm Macdonald
Norm Macdonald
Lucky (voice)
Royce D. Applegate
Royce D. Applegate
'I Love You' Dog (voice)
Eddie Frierson
Eddie Frierson
Skunk (voice)
Richard Schiff
Richard Schiff
Dr. Gene Reiss
Chris Rock
Chris Rock
Rodney (voice)
Jeffrey Tambor
Jeffrey Tambor
Dr. Fish
Pruitt Taylor Vince
Pruitt Taylor Vince
Patient at Hammersmith (uncredited)
Reni Santoni
Reni Santoni
Rat #1 (Voice)
Eddie Murphy
Eddie Murphy
Dr. John Dolittle
Tom Towles
Tom Towles
German Shepherd (voice)
Mark Adair-Rios
Mark Adair-Rios
Intern
Don Calfa
Don Calfa
Patient at Hammersmith
Jeff Doucette
Jeff Doucette
Possum (voice)
Gilbert Gottfried
Gilbert Gottfried
Compulsive Dog (Voice)
Beth Grant
Beth Grant
Woman
Raven-Symoné
Raven-Symoné
Charisse
Phil Proctor
Phil Proctor
Drunk Monkey (Voice)
Archie Hahn
Archie Hahn
Heavy Woman's Dog (voice)
Chad Einbinder
Chad Einbinder
Bettleheim the Cat (voice)
Arnold F. Turner
Arnold F. Turner
Animal Control Officer
Peter Boyle
Peter Boyle
Calloway
Ming Lo
Ming Lo
Cop #2
Jenna Elfman
Jenna Elfman
Owl (Voice)
Cherie Franklin
Cherie Franklin
Mrs. Parkus
Richard Penn
Richard Penn
Mr. Galvin
Kerrigan Mahan
Kerrigan Mahan
Penguin (voice)
Hamilton Camp
Hamilton Camp
Pig (voice)
Ellen DeGeneres
Ellen DeGeneres
Prologue Dog (voice)
Garry Shandling
Garry Shandling
Male Pigeon (voice)
June Christopher
June Christopher
Diane
John Lafayette
John Lafayette
Reverend
Kyla Pratt
Kyla Pratt
Maya
Karl T. Wright
Karl T. Wright
Reporter
Charles Branklyn
Charles Branklyn
Security Guard
Erik Dellums
Erik Dellums
Jeremy
Doug Shamburger
Doug Shamburger
Pound Dog (voice)
Kellye Nakahara
Kellye Nakahara
Beagle Woman
Yule Caise
Yule Caise
Vet's Assistant
Stan Sellers
Stan Sellers
Cop #1
Benny Buettner
Benny Buettner
Circus Clown (uncredited)

Images

Doctor Dolittle Poster
Doctor Dolittle Poster

Detailed Information

General Information

Original Title: Doctor Dolittle

Creators: Hwang Dong-hyuk

Gender: Family, Fantasy, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $71,000,000.00

Revenue: $294,500,000.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/3050

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

PHP com cURL

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

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

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

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