Need for Speed (2014)

The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racers head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.

2014
Drama
Crime
Action
Thriller
6.0
/tMRqzpQr9v0ji7IWMKboKy1UJfu.jpg Poster

Cast

Ramón Rodríguez
Ramón Rodríguez
Joe Peck
John Gatins
John Gatins
Air Force Pilot
Rick Shuster
Rick Shuster
CHP Pilot
Brian Keaulana
Brian Keaulana
Right Seater
Harrison Gilbertson
Harrison Gilbertson
Little Pete Coleman
Han Soto
Han Soto
News Producer
Rami Malek
Rami Malek
Finn
Michael Keaton
Michael Keaton
Monarch
Dominic Cooper
Dominic Cooper
Dino Brewster
Dakota Johnson
Dakota Johnson
Anita Coleman
Thomas Rosales Jr.
Thomas Rosales Jr.
Valet
Imogen Poots
Imogen Poots
Julia Maddon
John C. Meier
John C. Meier
CHP #5
Antoni Corone
Antoni Corone
Detective #2
E. Roger Mitchell
E. Roger Mitchell
Detective #1
Chad Randall
Chad Randall
Big Al
Carmela Zumbado
Carmela Zumbado
Jeny B
Kanin Howell
Kanin Howell
CHP #1
Michael Rose
Michael Rose
Investor
Jill Jane Clements
Jill Jane Clements
Older Smaller Woman
Libby Blake
Libby Blake
San Fran Girl (uncredited)
Jalil Jay Lynch
Jalil Jay Lynch
Jimmy MacIntosh
Nick Chinlund
Nick Chinlund
Officer Lejeune
Frank Brennan
Frank Brennan
60 Year Old Man
Aaron Paul
Aaron Paul
Tobey Marshall
Buddy Joe Hooker
Buddy Joe Hooker
Detroit Cop #1
Stevie Ray Dallimore
Stevie Ray Dallimore
Bill Ingram
Tara Jones
Tara Jones
News Anchor
Kid Cudi
Kid Cudi
Benny Jackson
Mike Massa
Mike Massa
CHP #4
AnnaCorey
AnnaCorey
Alex - Key Witness (uncredited)
Beth Waugh
Beth Waugh
Investor's Wife
Adora Dei
Adora Dei
Female EMT
Tim Gilbert
Tim Gilbert
CHP #3

Images

Need for Speed Poster
Need for Speed Poster

Video

trailer Oficial

Need for Speed -- O Filme - Trailer Legendado

trailer Oficial

Detailed Information

General Information

Original Title: Need for Speed

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $66,000,000.00

Revenue: $203,277,636.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/136797

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

PHP com cURL

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

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

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

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