Hot Fuzz (2007)

Former London constable Nicholas Angel finds it difficult to adapt to his new assignment in the sleepy British village of Sandford. Not only does he miss the excitement of the big city, but he also has a well-meaning oaf for a partner. However, when a series of grisly accidents rocks Sandford, Angel smells something rotten in the idyllic village.

2007
Crime
Action
Comedy
7.0
/bqT6jMz8J7vhZo7lMd6q5d8ijjd.jpg Poster

Cast

Bill Nighy
Bill Nighy
Met Chief Inspector
Ron Cook
Ron Cook
George Merchant
Nick Frost
Nick Frost
PC Danny Butterman
Stephen Merchant
Stephen Merchant
Peter Ian Staker
David Bradley
David Bradley
Arthur Webley
Peter Wight
Peter Wight
Roy Porter
Rafe Spall
Rafe Spall
DC Andy Cartwright
Jim Broadbent
Jim Broadbent
Inspector Frank Butterman
Paddy Considine
Paddy Considine
DS Andy Wainwright
Simon Pegg
Simon Pegg
Nicholas Angel
Edgar Wright
Edgar Wright
Shelf Stacker / Voice of Dave (uncredited)
Martin Freeman
Martin Freeman
Met Sergeant
Bill Bailey
Bill Bailey
Sergeant Turner
Cate Blanchett
Cate Blanchett
Janine (uncredited)
Kenneth Cranham
Kenneth Cranham
James Reaper
Anne Reid
Anne Reid
Leslie Tiller
David Threlfall
David Threlfall
Martin Blower
Timothy Dalton
Timothy Dalton
Simon Skinner
Steve Coogan
Steve Coogan
Metropolitan Police Inspector (uncredited)
Garth Jennings
Garth Jennings
Crack Addict (uncredited)
Adam Buxton
Adam Buxton
Tim Messenger
Lucy Punch
Lucy Punch
Eve Draper
Peter Jackson
Peter Jackson
Thief Dressed as Father Christmas (uncredited)
Olivia Colman
Olivia Colman
PC Doris Thatcher
Alice Lowe
Alice Lowe
Tina
Paul Freeman
Paul Freeman
Rev. Philip Shooter
Julia Deakin
Julia Deakin
Mary Porter
Patricia Franklin
Patricia Franklin
Annette Roper
Joe Cornish
Joe Cornish
Bob
Robert Popper
Robert Popper
'Not' Janine
Kevin Eldon
Kevin Eldon
Sergeant Tony Fisher
Edward Woodward
Edward Woodward
Tom Weaver
Billie Whitelaw
Billie Whitelaw
Joyce Cooper
Tim Barlow
Tim Barlow
Mr. Treacher
Rory McCann
Rory McCann
Michael Armstrong
Stuart Wilson
Stuart Wilson
Dr. Robin Hatcher
Lorraine Hilton
Lorraine Hilton
Amanda Paver
Colin Michael Carmichael
Colin Michael Carmichael
Heston Services Clerk
Maria Charles
Maria Charles
Mrs. Reaper
Karl Johnson
Karl Johnson
PC Bob Walker
Ben McKay
Ben McKay
Peter Cocker
Chris Waitt
Chris Waitt
Dave

Images

Hot Fuzz Poster
Hot Fuzz Poster

Detailed Information

General Information

Original Title: Hot Fuzz

Creators: Hwang Dong-hyuk

Gender: Crime, Action, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $12,000,000.00

Revenue: $80,600,000.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/4638

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

PHP com cURL

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

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

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

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