Arthur and the Invisibles (2006)

Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthurs grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.

2006
Family
Fantasy
Adventure
Animation
6.0
/4h8zDLrDJhZISdYVWVNLPl9WuW5.jpg Poster

Cast

Emilio Estevez
Emilio Estevez
Ferryman (voice)
Harvey Keitel
Harvey Keitel
Miro (voice)
Madonna
Madonna
Princess Selenia (voice)
Chazz Palminteri
Chazz Palminteri
Travel Agent (voice)
Adam LeFevre
Adam LeFevre
Davido
Nate Corddry
Nate Corddry
Seides (voice)
Anthony Anderson
Anthony Anderson
Koolomassai (voice)
Robert De Niro
Robert De Niro
King (voice)
Mia Farrow
Mia Farrow
Daisy Suchot
Lee Delong
Lee Delong
Saleslady
Rob Corddry
Rob Corddry
Seides (voice)
Freddie Highmore
Freddie Highmore
Arthur Montgomery
Doug Rand
Doug Rand
Arthur's Father
Penny Balfour
Penny Balfour
Rose Montgomery
Ron Crawford
Ron Crawford
Archibald Suchot
David Bowie
David Bowie
Maltazard (voice)
David Suchet
David Suchet
Narrator (voice)
Snoop Dogg
Snoop Dogg
Max (voice)
Saul Jephcott
Saul Jephcott
Police Officer #1
Christian Erickson
Christian Erickson
Antique Dealer
Oxmo Puccino
Oxmo Puccino
Mover #2
Robert William Bradford
Robert William Bradford
Baliff
Jerry Di Giacomo
Jerry Di Giacomo
Repairman
Tonio Descanvelle
Tonio Descanvelle
Police Officer #2
Jimmy Fallon
Jimmy Fallon
Betameche (voice)
Erik Per Sullivan
Erik Per Sullivan
Baby Bug/Mino (voice)

Images

Arthur and the Invisibles Poster
Arthur and the Invisibles Poster

Detailed Information

General Information

Original Title: Arthur and the Invisibles

Creators: Hwang Dong-hyuk

Gender: Family, Fantasy, Adventure, Animation,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $86,000,000.00

Revenue: $108,605,609.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/9992

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

PHP com cURL

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

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

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

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