Cars (2006)

Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the towns offbeat characters.

2006
Family
Adventure
Animation
Comedy
7.0
/A7nssMRIPauZhEVf2dzwsf4EALO.jpg Poster

Cast

Tim Allen
Tim Allen
Buzz Lightyear Car (voice)
Rodger Bumpass
Rodger Bumpass
Additional Voices (voice)
John Goodman
John Goodman
Sullivan Truck (voice)
Laraine Newman
Laraine Newman
Additional Voices (voice)
Jay Leno
Jay Leno
Jay Limo (voice)
Michael Keaton
Michael Keaton
Chick Hicks (voice)
Joe Ranft
Joe Ranft
Red / Peterbilt (voice)
Paul Newman
Paul Newman
Doc Hudson (voice)
Andrew Stanton
Andrew Stanton
Fred (voice)
Tom Hanks
Tom Hanks
Woody Car (voice)
Cheech Marin
Cheech Marin
Ramone (voice)
Tony Shalhoub
Tony Shalhoub
Luigi (voice)
Bob Bergen
Bob Bergen
Additional Voices (voice)
Jenifer Lewis
Jenifer Lewis
Flo (voice)
Owen Wilson
Owen Wilson
Lightning McQueen (voice)
Bill Farmer
Bill Farmer
Additional Voices (voice)
Jeremy Piven
Jeremy Piven
Harv (voice)
Edie McClurg
Edie McClurg
Minny (voice)
Sherry Lynn
Sherry Lynn
Additional Voices (voice)
Danny Mann
Danny Mann
Additional Voices (voice)
Mickie McGowan
Mickie McGowan
Additional Voices (voice)
Larry the Cable Guy
Larry the Cable Guy
Mater (voice)
George Carlin
George Carlin
Fillmore (voice)
Guido Quaroni
Guido Quaroni
Guido (voice)
Lindsey Collins
Lindsey Collins
Mia (voice)
Elissa Knight
Elissa Knight
Tia (voice)
Steve Purcell
Steve Purcell
Additional Voices (voice)
Jan Rabson
Jan Rabson
Additional Voices (voice)
John Cygan
John Cygan
Additional Voices (voice)
Paul Eiding
Paul Eiding
Additional Voices (voice)
Jack Angel
Jack Angel
Additional Voices (voice)
Bob Costas
Bob Costas
Bob Cutlass (voice)
Dave Foley
Dave Foley
Flik Car (voice)
Billy Crystal
Billy Crystal
Mike Car (voice)
Bonnie Hunt
Bonnie Hunt
Sally Carrera (voice)
Jim Ward
Jim Ward
Additional Voices (voice)
Teddy Newton
Teddy Newton
Additional Voices (voice)
Colleen O'Shaughnessey
Colleen O'Shaughnessey
Additional Voices (voice)
Colette Whitaker
Colette Whitaker
Additional Voices (voice)
Jess Harnell
Jess Harnell
Additional Voices (voice)
Dan Scanlon
Dan Scanlon
Additional Voices (voice)
Richard Kind
Richard Kind
Van (voice)
Katherine Helmond
Katherine Helmond
Lizzie (voice)
Bob Peterson
Bob Peterson
Additional Voices (voice)
John Ratzenberger
John Ratzenberger
Mack / Hamm Truck / Abominable Snow Plow / P.T. Flea Car (voice)
Paul Dooley
Paul Dooley
Sarge (voice)
Michael Bell
Michael Bell
Additional Voices (voice)
Teresa Ganzel
Teresa Ganzel
Additional Voices (voice)
Susan Blu
Susan Blu
Additional Voices (voice)
Lou Romano
Lou Romano
Snotrod (voice)
Jonas Rivera
Jonas Rivera
Boost (voice)
Michael Schumacher
Michael Schumacher
Michael Schumacher Ferrari (voice)
Dale Earnhardt Jr.
Dale Earnhardt Jr.
Junior (voice)
Darrell Waltrip
Darrell Waltrip
Darrell Cartrip (voice)
Michael Wallis
Michael Wallis
Sheriff (voice)
Sonoko Konishi
Sonoko Konishi
Additional Voices (voice)
Richard Petty
Richard Petty
The King (voice)
Humpy Wheeler
Humpy Wheeler
Tex (voice)
Tom Magliozzi
Tom Magliozzi
Rusty Rust-eze (voice)
Ray Magliozzi
Ray Magliozzi
Dusty Rust-eze (voice)
Mario Andretti
Mario Andretti
Mario Andretti (voice)
Brian Fee
Brian Fee
Additional Voices (voice)
Ken Schretzmann
Ken Schretzmann
Additional Voices (voice)
Matt Staudt
Matt Staudt
Additional Voices (voice)

Images

Cars Poster
Cars Poster

Video

trailer Oficial

Filme | Carros

trailer Oficial

Detailed Information

General Information

Original Title: Cars

Creators: Hwang Dong-hyuk

Gender: Family, Adventure, Animation, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $120,000,000.00

Revenue: $461,983,149.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/920

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

PHP com cURL

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

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

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

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