Bulletproof (2018)

Police duo Bishop and Pike are two best mates bonded by the same moral code, despite their differences. Packed full of humour, action and emotion, Bulletproof is about friendship, conspiracies and ghosts from the past.

2018
Crime
Action & Adventure
6.0
/yiKT45qwaiXof4T6EG990qjk2wO.jpg Poster

Episodes

Episódio 1
0h 45min
Episódio 1
Episódio 1
Partners Aaron Bishop and Ronnie Pike must infiltrate a crime ring who are stealing luxury cars in London.
2018-05-15
8.7
Episódio 2
0h 45min
Episódio 2
Episódio 2
A gunfight, a race for their lives... it's all going on for London cops Bishop and Pike as a notorious criminal appears out of the blue.
2018-05-22
8.7
Episódio 3
0h 45min
Episódio 3
Episódio 3
Thrown off the Sharp case, Pike decides to break the rules. A new chase leads the boys into a shoot-out.
2018-05-29
8.7
Episódio 4
0h 45min
Episódio 4
Episódio 4
The lives of Pike's family are turned upside down when his and Bishop's refusal to follow orders hurls them into a disturbing case.
2018-06-05
8.7
Episódio 5
0h 45min
Episódio 5
Episódio 5
Bishop receives a package that rocks him to his core. Pike must put his family first, even if it means abandoning his best mate.
2018-06-12
8.7
Episódio 6
0h 45min
Episódio 6
Episódio 6
Pike and Bishop revisit Borlock and promise to protect him if he tells them everything he knows about Sharp - leading the duo into a race to catch the culprits.
2018-06-19
8.7
Episódio 1
0h 45min
Episódio 1
Episódio 1
Bishop and Pike get dragged into their most dangerous case yet, one that will truly test their morals. Meanwhile, the Unit are under the watchful eye of the new `by-the-book' Deputy Director, Richard Cockridge.
2020-03-20
8.7
Episódio 2
0h 45min
Episódio 2
Episódio 2
Tension mounts as Pike and Bishop are drawn deeper into the Markides family. Tanner sweats over her recent decision to steal a sum of `drug' money to fix a problem in her personal life.
2020-03-27
8.7
Episódio 3
0h 45min
Episódio 3
Episódio 3
The hunt for a missing girl leads Bishop and Pike to Amsterdam and into the heart of the Markides's dark operations.
2020-04-03
8.7
Episódio 4
0h 45min
Episódio 4
Episódio 4
As Alex regains control of the family, Mikey puts Bishop and Pike in charge of a gun-trafficking op. But the boys quickly find themselves out of their depth.
2020-04-10
8.7
Episódio 5
0h 45min
Episódio 5
Episódio 5
Elena digs into Bishop's identity. Meanwhile, the boys hunt for a lead in Cyprus. But how long can they keep their cover?
2020-04-17
8.7
Episódio 6
0h 45min
Episódio 6
Episódio 6
Bishop and Pike's covers are blown, with serious consequences for the unit. With the boys' lives at stake, Tanner goes head-to-head with Elena.
2020-04-24
8.7
Episódio 7
0h 45min
Episódio 7
Episódio 7
Bishop seeks out one last chance to bring the Markides family down. But this time, Pike isn't prepared to help him.
2020-05-01
8.7
Episódio 8
0h 45min
Episódio 8
Episódio 8
The unit must go off-the-books if they're to take down Alex and Mikey. Adrenaline-fuelled series finale. Strong language from the start and violent scenes.
2020-05-08
8.7
Episódio 1
0h 45min
Episódio 1
Episódio 1
London cops Pike and Bishop escape the capital for a much-deserved break in South Africa. But the fun doesn't last as they are drawn into a new case.
2021-01-20
8.7
Episódio 2
0h 45min
Episódio 2
Episódio 2
Pike and Bishop must use all their smarts to survive a stay in a grotty South African prison. Meanwhile, the clues start to mount in the kidnapping case.
2021-01-27
8.7
Episódio 3
0h 45min
Episódio 3
Episódio 3
Bishop and Pike's impromptu South African kidnapping mission concludes as they close in on the masterminds behind the plot. As Arjana makes a startling discovery, she is taken hostage before she can alert the boys.
2021-02-03
8.7

Where Watch

Images

Bulletproof Poster
Bulletproof Poster

Detailed Information

General Information

Original Title: Bulletproof

Creators: Hwang Dong-hyuk

Gender: Crime, Action & Adventure,

Seasons: 3

Episodes: 17

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

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/tv/79412

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

PHP com cURL

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

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

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

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