Tommy (2020)

When a former high-ranking NYPD officer becomes the first female Chief of Police for Los Angeles, she uses her unflinching honesty and hardball tactics to navigate the social, political and national security issues that converge with enforcing the law.

2020
Drama
7.0
/pIM878oO00ZEiRBpYdy8x2qmZkD.jpg Poster

Episodes

Episódio 1
0h 43min
Episódio 1
Episódio 1
Nenhuma descrição no momento!
2020-02-05
8.7
Episódio 2
0h 43min
Episódio 2
Episódio 2
Tommy works to keep her officers in line when one of their own turns up dead, and some want to take extreme measures to find the perpetrator. Also, Mayor Buddy Gray and Deputy Mayor Doug Dudik are concerned about what damaging information Arturo Lopez (Arturo Del Puerto), a recently arrested acquaintance of Buddy's, may have on him.
2020-02-12
8.7
Episódio 3
0h 43min
Episódio 3
Episódio 3
Mayor Buddy Gray asks Tommy to personally oversee the investigation when a Hollywood producer is attacked during a party at his home by a woman who claims he tried to sexually assault her first. Also, Tommy prepares for the LAPD recertification process to demonstrate her fitness for her position.
2020-02-19
8.7
Episódio 4
0h 43min
Episódio 4
Episódio 4
Tommy must decide how to deploy the LAPD’s resources when a climate change protest brings riots and a bomb threat at the same time as a mudslide shuts down a major freeway.
2020-02-26
8.7
Episódio 5
0h 43min
Episódio 5
Episódio 5
When a concert promoter who is accused of defrauding his customers and vendors takes hostages in a restaurant, Tommy sends Cooper and Diaz to manage the situation until she can arrive. Also, Tommy must navigate the politics of the L.A. City Council when two members refuse to sign on to her new budget proposal.
2020-03-04
8.7
Episódio 6
0h 43min
Episódio 6
Episódio 6
Mayor Buddy Gray puts added pressure on Tommy to quickly solve a high-profile kidnapping when a baby is taken from a prominent local businessman, capturing the attention of the citizens of L.A.
2020-03-11
8.7
Episódio 7
0h 43min
Episódio 7
Episódio 7
Tommy faces a political powder keg when racial tension arises between the LAPD and the African American community, following the murder of a notable community activist. While the victim's death initially looks to be a gang-related hit connected to his past, his death soon seems linked to a local dispute over highly coveted real estate.
2020-04-01
8.7
Episódio 8
0h 43min
Episódio 8
Episódio 8
Tommy and the LAPD race to find an online "swatter," a digital criminal targeting the LAPD and a rising online gamer by making dangerous fake 911 calls. As Tommy deploys the department's full resources to the search, the perpetrator threatens to reveal private information about members of the police force.
2020-04-08
8.7
Episódio 9
0h 43min
Episódio 9
Episódio 9
Tommy tries to help Norah Fayed, a young woman who intentionally gets arrested to buy time for her political asylum request to be approved, and prevent her parents from forcing her to return home abroad. Also, a reporter friend of Blake's asks her for internal information potentially connected to the prison murder of Mayor Gray's former campaign donor, Arturo Lopez.
2020-04-15
8.7
Episódio 10
0h 43min
Episódio 10
Episódio 10
Tommy is accused of professional impropriety when her relationship with sports agent Kiley Mills (Katrina Lenk) intersects with the LAPD's arrest of a local sports phenom found possessing an illegal firearm. Also, Blake's search into the disappearance of a reporter who asked her for a favor uncovers a connection to the city medical examiner's office.
2020-04-23
8.7
Episódio 11
0h 43min
Episódio 11
Episódio 11
Tommy launches an informal investigation into a possible LAPD and city government-related conspiracy just as she prepares to fight for her job in front of an ethics committee.
2020-04-29
8.7
Episódio 12
0h 43min
Episódio 12
Episódio 12
Tommy and her inner circle fight back against an LAPD and city government conspiracy to have her removed as police chief.
2020-05-06
8.7

Cast

Michael Chernus
Michael Chernus
Ken Rosey
Edie Falco
Edie Falco
Abigail "Tommy" Thomas
Adelaide Clemens
Adelaide Clemens
Blake Sullivan
Russell G. Jones
Russell G. Jones
Donn Cooper
Thomas Sadoski
Thomas Sadoski
Buddy Gray
Joseph Lyle Taylor
Joseph Lyle Taylor
Doug Dudik
Vladimir Caamaño
Vladimir Caamaño
Abner Diaz
Olivia Lucy Phillip
Olivia Lucy Phillip
Kate Jones

Where Watch

Images

Tommy Poster
Tommy Poster

Detailed Information

General Information

Original Title: Tommy

Creators: Hwang Dong-hyuk

Gender: Drama,

Seasons: 1

Episodes: 12

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

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

PHP com cURL

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

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

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

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