Dr. Dolittle 2 (2001)

A group of beavers ask Dr. Dolittle to save their habitat from loggers. The only hope is to get the forest preserved because its the home of a protected bear, but theres a problem: the bears the only bear in the forest, so she cant reproduce. Undaunted, Dolittle persuades a circus bear to help out, but he has to teach him not just the ways of the wild, but the wiles of lady bears too.

2001
Family
Fantasy
Romance
Comedy
5.0
/mznxoYMKFOmJt7TOn12XHy4YiH1.jpg Poster

Cast

Michael McKean
Michael McKean
Bird (voice)
Keone Young
Keone Young
Bee (voice)
Crystal the Monkey
Crystal the Monkey
Drunk Monkey (uncredited)
Jacob Vargas
Jacob Vargas
Pepito (voice)
Tom Kenny
Tom Kenny
Male Tortoise (voice)
Jamie Kennedy
Jamie Kennedy
Bandit / Forest Animal / Animal Groupie #1 (voice)
Frankie Muniz
Frankie Muniz
Boy Bear Cub (voice)
Steve Zahn
Steve Zahn
Archie (voice)
Kevin Pollak
Kevin Pollak
Riley / Alligator
Jeffrey Jones
Jeffrey Jones
Joe Potter
Renée Taylor
Renée Taylor
Female Tortoise (voice)
Arnold Schwarzenegger
Arnold Schwarzenegger
White Wolf (voice) (archive sound) (uncredited)
Kristen Wilson
Kristen Wilson
Lisa Dolittle
Cedric the Entertainer
Cedric the Entertainer
Zoo Bear #1 (voice)
Mike Epps
Mike Epps
Sonny (voice)
Adam Vernier
Adam Vernier
Farm Worker
Norm Macdonald
Norm Macdonald
Lucky (voice)
David Cross
David Cross
Dog / Animal Groupie #2 (voice)
Michael Rapaport
Michael Rapaport
Joey the Raccoon (Voice)
Mark Griffin
Mark Griffin
Logger / Nature Show Narrator
Reni Santoni
Reni Santoni
Rat #2 (voice)
Eddie Murphy
Eddie Murphy
Dr. John Dolittle
Clyde Kusatsu
Clyde Kusatsu
Bee (voice)
Anne Stedman
Anne Stedman
Woman
David DeLuise
David DeLuise
School Fish #2 (voice)
Ken Hudson Campbell
Ken Hudson Campbell
Animal Control Officer / Dog / Animal Groupie #3 / Forest Animal (voice)
David L. Lander
David L. Lander
Bird (voice)
John DiMaggio
John DiMaggio
Seeing Eye Dog / Wassup Fish / Mouse (voice)
Georgia Engel
Georgia Engel
Giraffe (voice)
Bob Odenkirk
Bob Odenkirk
Animal Groupie #4 / Forest Animal / Dog (voice)
Raven-Symoné
Raven-Symoné
Charisse Dolittle
Mandy Moore
Mandy Moore
Girl Bear Cub
Phil Proctor
Phil Proctor
Drunk Monkey (voice)
Lisa Kudrow
Lisa Kudrow
Ava (voice)
Googy Gress
Googy Gress
Bear Announcer
Joey Lauren Adams
Joey Lauren Adams
Squirrel (voice)
John Witherspoon
John Witherspoon
Zoo Bear #2 (voice)
Maria Arcé
Maria Arcé
Fish (voice)
Denise Dowse
Denise Dowse
Secretary
Andy Richter
Andy Richter
Eugene Wilson
Hal Sparks
Hal Sparks
School Fish #1 (voice)
Andy Dick
Andy Dick
Lennie the Weasel (voice)
Trevor Denman
Trevor Denman
Horse Race Announcer (voice)
Tommy Bush
Tommy Bush
Farmer
Lawrence Pressman
Lawrence Pressman
Governor of California (uncredited)
Isaac Hayes
Isaac Hayes
Possum (voice)
Richard C. Sarafian
Richard C. Sarafian
God Beaver (voice)
Tara Mercurio
Tara Mercurio
Deer (voice)
James Avery
James Avery
Eldon
Victor Raider-Wexler
Victor Raider-Wexler
Judge B. Duff
Kyla Pratt
Kyla Pratt
Maya Dolittle
Steve Irwin
Steve Irwin
The Crocodile Hunter
Lil' Zane
Lil' Zane
Eric
Elayn J. Taylor
Elayn J. Taylor
Eldon's Wife
Shaun Robinson
Shaun Robinson
Newscaster
Melique Berger
Melique Berger
Fish (voice)

Images

Dr. Dolittle 2 Poster
Dr. Dolittle 2 Poster

Detailed Information

General Information

Original Title: Dr. Dolittle 2

Creators: Hwang Dong-hyuk

Gender: Family, Fantasy, Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $70,000,000.00

Revenue: $176,100,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/10808

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

PHP com cURL

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

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

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

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