Backstrom (2015)

Detective Lieutenant Everett Backstrom is a man with no filter. After a five-year exile to the traffic division for offensive behavior, he has returned from disgrace to lead Portlands newly minted S.C.U. Tasked with navigating the citys most sensitive and serious cases, he must solve each crime as he tries, and fails, to change his own self-destructive behavior. Based on renowned Swedish criminologist and novelist Leif G.W. Perssons hit series of books of the same name.

2015
Drama
Crime
6.0
/jX1hRlRiBilKbOciczFgOibe6rO.jpg Poster

Episodes

Episódio 1
1h 0min
Episódio 1
Episódio 1
The supposed suicide of a senator's son ends up being a homicide.
2015-01-22
8.7
Episódio 2
1h 0min
Episódio 2
Episódio 2
The team help to investigate an serial arsonist.
2015-01-29
8.7
Episódio 3
1h 0min
Episódio 3
Episódio 3
Backstrom and his team are called in after a youth pastor is discovered murdered at a church.
2015-02-05
8.7
Episódio 4
1h 0min
Episódio 4
Episódio 4
Backstrom and his team are called in when a member of Portland's LGBT community is killed.
2015-02-12
8.7
Episódio 5
1h 0min
Episódio 5
Episódio 5
Backstrom and his team are called in when a teenage girl are abducted by an online predator.
2015-02-19
8.7
Episódio 6
1h 0min
Episódio 6
Episódio 6
A murder leads Backstrom and his team to an illegal gambling ring.
2015-02-26
8.7
Episódio 7
1h 0min
Episódio 7
Episódio 7
Backstrom and his team must work with his estranged father in order to catch a suspected eco-terrorist.
2015-03-05
8.7
Episódio 8
1h 0min
Episódio 8
Episódio 8
Backstrom and the S.C.U. investigate a hit-and-run that leaves a wealthy woman dead.
2015-03-26
8.7
Episódio 9
1h 0min
Episódio 9
Episódio 9
A key witness in a drug investigation is found dead after escaping from his court-mandated rehab program, and Backstrom must figure out how he escaped and who killed him. However, when the S.C.U. learns that the victim is member of a band and all his bandmates dislike him, they start to believe that the killer may be someone closer than they expected. Meanwhile, Backstrom has reason to believe that Valentine may be more than just his tenant.
2015-04-02
8.7
Episódio 10
1h 0min
Episódio 10
Episódio 10
When a young female sex surrogate is found dead in Portland's Rose Garden, the S.C.U. investigates what could be a crime of lust, rage, passion or possibly even love. Meanwhile, Backstrom receives very upsetting news about his mother.
2015-04-09
8.7
Episódio 11
1h 0min
Episódio 11
Episódio 11
Backstrom and the S.C.U. are plunged into the zany, provocative world of a performance art festival when one of the participating artists is found dead. Their investigation turns up a slew of potential killers, all of whom are creative types involved in the festival. In the process of solving the murder, Backstrom reveals a surprising appreciation for visual artwork, and a moment of passion between him and a fiery suspect turns into its own piece of performance art.
2015-04-16
8.7
Episódio 12
1h 0min
Episódio 12
Episódio 12
Sarah Chalke (“Scrubs”) Guest-Stars Backstrom comes home to find Dante Trippi, Valentine’s abuser, murdered on his doorstep. Worried that Valentine could be next, the S.C.U.’s investigation leads Backstrom to a ring of counterfeit wine smugglers, a corrupt river patrol cop and a Club of Portland government official. Meanwhile, Valentine’s inability to tell the truth makes it harder for the team to catch the killer and Amy (guest star Sarah Chalke) has a new boyfriend, of whom Backstrom is not fond.
2015-04-23
8.7
Episódio 13
1h 0min
Episódio 13
Episódio 13
When a Native American is found dead under a bridge on the Wabacooche Indian reservation, Amy’s new boyfriend and Indian Reserve Police Captain, Jesse Rocha, wants in on the case. Backstrom then learns that Indian meth-king Norwest, of Cooch County, is a suspect in the case, and he is convinced his father, Cooch County Sheriff Blue Backstrom, knows about Norwest’s drug dealings, leaving Backstrom to make a difficult decision. Meanwhile, in order to keep his job with the S.C.U., Backstrom must impress Dr. Deb.
2015-04-30
8.7

Cast

Dennis Haysbert
Dennis Haysbert
Det. Sgt. Almond
Rainn Wilson
Rainn Wilson
Det. Lt. Backstrom
Kristoffer Polaha
Kristoffer Polaha
Sgt. Niedermayer
Page Kennedy
Page Kennedy
Officer Moto
Genevieve Angelson
Genevieve Angelson
Det. Gravely
Beatrice Rosen
Beatrice Rosen
Nadia Paquet

Where Watch

Images

Backstrom Poster
Backstrom Poster

Detailed Information

General Information

Original Title: Backstrom

Creators: Hwang Dong-hyuk

Gender: Drama, Crime,

Seasons: 1

Episodes: 13

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/50971

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

PHP com cURL

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

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

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

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