The Ant Bully (2006)

Fed up with being targeted by the neighborhood bully, 10-year-old Lucas Nickle vents his frustrations on the anthill in his front yard ... until the insects shrink him to the size of a bug with a magic elixir. Convicted of crimes against the colony, Lucas can only regain his freedom by living with the ants and learning their ways.

2006
Family
Fantasy
Adventure
Animation
Comedy
5.0
/3RilrFBatK7fDwyI8Q7r4XhdF44.jpg Poster

Cast

Bruce Campbell
Bruce Campbell
Fugax (voice)
Tyler James Williams
Tyler James Williams
Blue Teammate #1 (voice)
Tom Kenny
Tom Kenny
Drone Ant / Ant #2 / Ant #6 (voice)
Larry Miller
Larry Miller
Fred Nickle (voice)
Julia Roberts
Julia Roberts
Hova (voice)
Pat Fraley
Pat Fraley
Ant Council #1 (voice)
Frank Welker
Frank Welker
Spindle / Frog / Caterpillar (voice)
Nicolas Cage
Nicolas Cage
Zoc (voice)
Meryl Streep
Meryl Streep
Queen (voice)
Paul Giamatti
Paul Giamatti
Stan Beals (voice)
Rob Paulsen
Rob Paulsen
Beetle (voice)
Colin Ford
Colin Ford
Red Teammate #4 (voice)
Regina King
Regina King
Kreela (voice)
Sean Donnellan
Sean Donnellan
Soldier Ant #1 (voice)
Neil Ross
Neil Ross
Wasp #1 / Wasp #5 (voice)
Nika Futterman
Nika Futterman
Ant #1 / Ant #7 (voice)
Don Frye
Don Frye
Soldier Ant (voice)
Denzel Whitaker
Denzel Whitaker
Albert (voice)
David Kaye
David Kaye
Sleeping Ant #2 / Guard Ant #3 / Wrangler Ant (voice)
Nicole Sullivan
Nicole Sullivan
Ant #9 (voice)
Paul Rugg
Paul Rugg
Ant #5 (voice)
Wally Wingert
Wally Wingert
Wasp #3 (voice)
Jake T. Austin
Jake T. Austin
Nicky (voice)
Candi Milo
Candi Milo
Nurse Ant #3 (voice)
Shane Baumel
Shane Baumel
Red Teammate #6 (voice)
Tress MacNeille
Tress MacNeille
Old Council Ant (voice)
Larry Cedar
Larry Cedar
Ant #8 (voice)
Lily Tomlin
Lily Tomlin
Mommo (voice)
Jaishon Fisher
Jaishon Fisher
Blue Teammate #4 (voice)
Myles Jeffrey
Myles Jeffrey
Steve (voice)
Vernee Watson
Vernee Watson
Head Nurse (voice)
Cheri Oteri
Cheri Oteri
Doreen Nickle (voice)
Allison Mack
Allison Mack
Tiffany Nickle (voice)
Max Burkholder
Max Burkholder
Blue Teammate #6 (voice)
Zach Tyler Eisen
Zach Tyler Eisen
Lucas Nickle (voice)
Ricardo Montalban
Ricardo Montalban
Head of Council (voice)
Mark DeCarlo
Mark DeCarlo
Fly (voice)
Kendall Ryan Sanders
Kendall Ryan Sanders
Red Teammate #5 (voice)
Bob Joles
Bob Joles
Wasp #2 (voice)
Creagen Dow
Creagen Dow
Mullet Boy (voice)
Paul Greenberg
Paul Greenberg
Sleeping Ant #1 / Head Lice #1 / Head Lice #2 / Head Lice #3 / Head Lice #4 / Brett (voice)
Jake Goldberg
Jake Goldberg
Helmet Boy / Nob / Red Teammate #1 (voice)
John A. Davis
John A. Davis
Ant #19 (voice)
Jonathan David Cook
Jonathan David Cook
Wasp #6 (voice)
Clive Robertson
Clive Robertson
Hova's Wasp (voice)

Images

The Ant Bully Poster
The Ant Bully Poster

Video

trailer Oficial

Lucas Um intruso no formigueiro Hd completo

trailer Oficial

Detailed Information

General Information

Original Title: The Ant Bully

Creators: Hwang Dong-hyuk

Gender: Family, Fantasy, Adventure, Animation, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $50,000,000.00

Revenue: $55,200,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/9906

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

PHP com cURL

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

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

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

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