Robôs (2005)

Rodney Lataria é um robô que tem um dom para inventar máquinas, que trabalha com seu pai lavando pratos. Sonhando em conhecer seu ídolo, o Grande Soldador, Rodney decide partir em uma viagem rumo a Robópolis. Porém, ao chegar na cidade, ele percebe que sua busca será mais difícil do que imaginava. Logo Rodney se torna amigo dos Enferrujados, um grupo de robôs de rua que sabe se virar e que acaba por abrigá-lo. Tentando encontrar o Grande Soldador e mantendo seu ideal em fazer um mundo melhor, ele enfrenta situações que podem pôr em risco a própria existência de Robópolis.

2005
Family
Science Fiction
Animation
Comedy
6.0
/3PkV4woflbyKEyNGHPjsKftJPvQ.jpg Poster

Cast

Robin Williams
Robin Williams
Fender (voice)
Harland Williams
Harland Williams
Lug (voice)
Halle Berry
Halle Berry
Cappy (voice)
Jay Leno
Jay Leno
Fire Hydrant (voice)
Paula Abdul
Paula Abdul
Watch (voice)
James Earl Jones
James Earl Jones
Voice Box at Hardware Store (voice)
Frank Welker
Frank Welker
Sweeper (voice) (uncredited)
Sondra James
Sondra James
Additional Voices
Ewan McGregor
Ewan McGregor
Rodney Copperbottom (voice)
Stanley Tucci
Stanley Tucci
Herb Copperbottom (voice)
Jim Broadbent
Jim Broadbent
Madame Gasket (voice)
Paul Giamatti
Paul Giamatti
Tim the Gate Guard (voice)
Amanda Bynes
Amanda Bynes
Piper (voice)
Jennifer Coolidge
Jennifer Coolidge
Aunt Fanny (voice)
James Brown
James Brown
Diesel (archive footage) (uncredited)
Greg Kinnear
Greg Kinnear
Ratchet (voice)
Natasha Lyonne
Natasha Lyonne
Loretta Geargrinder (voice)
Al Roker
Al Roker
Mailbox (voice)
Mel Brooks
Mel Brooks
Bigweld (voice)
Dan Hedaya
Dan Hedaya
Mr. Gunk (voice)
Ray Iannicelli
Ray Iannicelli
Additional Voices
Terry Bradshaw
Terry Bradshaw
Broken Arm Bot (voice)
Lucille Bliss
Lucille Bliss
Pigeon Lady (voice)
Jansen Panettiere
Jansen Panettiere
Younger Rodney (voice)
Stephen Tobolowsky
Stephen Tobolowsky
Bigmouth Executive / Forge (voice)
Jackie Hoffman
Jackie Hoffman
Water Cooler (voice)
Dianne Wiest
Dianne Wiest
Mrs. Copperbottom (voice)
Darin De Paul
Darin De Paul
Additional Voices
Lowell Ganz
Lowell Ganz
Mr. Gasket (voice)
Alan Rosenberg
Alan Rosenberg
Jack Hammer (voice)
Chris Wedge
Chris Wedge
Wonderbot / Phone Booth (voice)
Marshall Efron
Marshall Efron
Lamppost / Toilet Bot / Bass Drum / Microphone
Dann Fink
Dann Fink
Additional Voices
Will Denton
Will Denton
Young Rodney (voice)
Vanessa Lemonides
Vanessa Lemonides
Additional Voices
Brian Scott McFadden
Brian Scott McFadden
Trashcan Bot (voice)
Tim Nordquist
Tim Nordquist
Tin Man (voice)
Lara Cody
Lara Cody
Additional Voices
Bruce Winant
Bruce Winant
Additional Voices / ADR Loop Group
Crawford Wilson
Crawford Wilson
Young Rodney (voice)
Chingy
Chingy
DJ Robot (uncredited)
Drew Carey
Drew Carey
Crank (voice)
Damien Fahey
Damien Fahey
Stage Announcer (voice)
David Crommett
David Crommett
Additional Voices
Chris Moyles
Chris Moyles
Stage Announcer (voice)

Images

Robôs Poster
Robôs Poster

Detailed Information

General Information

Original Title: Robôs

Creators: Hwang Dong-hyuk

Gender: Family, Science Fiction, Animation, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $75,000,000.00

Revenue: $262,511,490.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/9928

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

PHP com cURL

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

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

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

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