Cars 2 (2011)

Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.

2011
Family
Adventure
Animation
Comedy
6.0
/fIKaabvE40T39nOIngcZPcPJeYe.jpg Poster

Cast

Bruce Campbell
Bruce Campbell
Rod 'Torque' Redline (voice)
Vanessa Redgrave
Vanessa Redgrave
The Queen / Mama Topolino (voice)
Jason Isaacs
Jason Isaacs
Siddeley / Leland Turbo (voice)
Emily Mortimer
Emily Mortimer
Holley Shiftwell (voice)
John Lasseter
John Lasseter
Additional Voices (voice)
Cheech Marin
Cheech Marin
Ramone (voice)
Velibor Topic
Velibor Topic
Alexander Hugo (voice)
Tony Shalhoub
Tony Shalhoub
Luigi (voice)
Jenifer Lewis
Jenifer Lewis
Flo (voice)
Owen Wilson
Owen Wilson
Lightning McQueen (voice)
Stanley Townsend
Stanley Townsend
Victor Hugo / Vladimir Trunkov / Ivan the Tow Truck (voice)
Eddie Izzard
Eddie Izzard
Sir Miles Axlerod (voice)
Peter Jacobson
Peter Jacobson
Acer (voice)
Edie McClurg
Edie McClurg
Minny (voice)
Larry the Cable Guy
Larry the Cable Guy
Mater (voice)
Guido Quaroni
Guido Quaroni
Guido (voice)
Thomas Kretschmann
Thomas Kretschmann
Professor Z (voice)
Joe Mantegna
Joe Mantegna
Grem (voice)
Bonnie Hunt
Bonnie Hunt
Sally (voice)
John Mainieri
John Mainieri
J. Curby Gremlin (voice)
Franco Nero
Franco Nero
Uncle Topolino (voice)
Michael Caine
Michael Caine
Finn McMissile (voice)
Lewis Hamilton
Lewis Hamilton
Lewis Hamilton (voice)
Teresa Gallagher
Teresa Gallagher
Mater's Computer (voice)
Richard Kind
Richard Kind
Van (voice)
Katherine Helmond
Katherine Helmond
Lizzie (voice)
John Ratzenberger
John Ratzenberger
Mack (voice)
John Turturro
John Turturro
Francesco Bernoulli (voice)
Jeff Garlin
Jeff Garlin
Otis (voice)
Paul Dooley
Paul Dooley
Sarge (voice)
Lloyd Sherr
Lloyd Sherr
Fillmore / Combat Ship (voice)
Brent Musburger
Brent Musburger
Brent Mustangburger (voice)
Bradford Lewis
Bradford Lewis
Tubbs Pacer (voice)
Jeff Gordon
Jeff Gordon
Jeff Gorvette (voice)
Darrell Waltrip
Darrell Waltrip
Darrell Cartrip (voice)
David Hobbs
David Hobbs
David Hobbscap (voice)
Michel Michelis
Michel Michelis
Tomber (voice)
Sig Hansen
Sig Hansen
Crabby (voice)
Michael Wallis
Michael Wallis
Sheriff (voice)
Gillian Bolt
Gillian Bolt
Additional Voices (voice)
Sonoko Konishi
Sonoko Konishi
Additional Voices (voice)

Images

Cars 2 Poster
Cars 2 Poster

Video

trailer Oficial

Carros 2 - Trailer K - Walt Disney Studios Brasil

trailer Oficial

Detailed Information

General Information

Original Title: Cars 2

Creators: Hwang Dong-hyuk

Gender: Family, Adventure, Animation, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $200,000,000.00

Revenue: $559,852,396.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/49013

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

PHP com cURL

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

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

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

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