Troppo (2022)

An eccentric private investigator with a criminal past recruits a disgraced ex-cop to help solve the disappearance of a Korean tech pioneer in the wilds of Far North Queensland.

2022
Drama
Crime
6.0
/oH4JPLdxSdz0xGKEQSuDHHUWFEq.jpg Poster

Episodes

Episódio 1
1h 0min
Episódio 1
Episódio 1
Amanda Pharrell, an eccentric private investigator with a disturbing criminal past, recruits disgraced ex-cop Ted Conkaffey, to help solve the disappearance of a Korean tech pioneer.
2022-02-27
8.7
Episódio 2
0h 57min
Episódio 2
Episódio 2
Ted and Amanda's hard work leads to Jong Min's remains being found in the river. Amanda is convinced there's a link between this death, and that of her friend Lars.
2022-03-06
8.7
Episódio 3
0h 55min
Episódio 3
Episódio 3
A shocking revelation of an affair leads Amanda and Ted to focus their attention on Yoon Sun and Olivia as prime suspects, while Ted is confronted to discover his past is still very much in the present.
2022-03-13
8.7
Episódio 4
0h 59min
Episódio 4
Episódio 4
More of Jong Min's remains are recovered, leading Ted and Amanda's investigation down a darker path, just as Ted receives bombshell news from home.
2022-03-20
8.7
Episódio 5
0h 53min
Episódio 5
Episódio 5
Amanda is shocked to discover the attack on Ted, and is determined to find the culprit.
2022-03-27
8.7
Episódio 6
0h 58min
Episódio 6
Episódio 6
A major breakthrough in the investigation is threatened when Amanda's past erupts into the present.
2022-04-03
8.7
Episódio 7
0h 59min
Episódio 7
Episódio 7
Amanda takes a huge risk playing Twist and Bryce off against each other, and uncovers the truth about Lars' death.
2022-04-10
8.7
Episódio 8
0h 54min
Episódio 8
Episódio 8
Uncovering the truth about Park's death brings little comfort for Ted and Amanda; but Ted's digging into Amanda's past finally pays off, and she is able to confront her demons.
2022-04-17
8.7
Episódio 1
0h 59min
Episódio 1
Episódio 1
Six months on, Ted and Amanda investigate a bizarre local murder and an exotic drug ring. Amanda tangles with an old enemy and a new love, and Ted's past stalks him and his family.
2024-07-05
8.7
Episódio 2
0h 58min
Episódio 2
Episódio 2
Ted and Amanda investigate Julian's neighbours, cane farmers adjoining Family Tree, and discover that they harbour a bitter grudge against Julian over the death of their son but are they capable of murder?
2024-07-12
8.7
Episódio 3
0h 53min
Episódio 3
Episódio 3
Amanda and Ted focus on the 'leaded fuel' clue trail, which leads Amanda into danger with a croc-poaching family, while Ted is distracted by the arrival of his daughter and an unexpected Kelly.
2024-07-19
8.7
Episódio 4
0h 56min
Episódio 4
Episódio 4
When a drug-affected croc poacher climbs naked up a flagpole and falls to his death, Ted and Amanda investigate the source of his mystery narcotic while following Julian's money trail and uncovering family secrets.
2024-07-26
8.7
Episódio 5
0h 54min
Episódio 5
Episódio 5
Ted and Amanda attend Julian's eccentric funeral armed with explosive knowledge about Raph's parentage before preventing a potential tragedy at the local Crimson Lake races.
2024-08-02
8.7
Episódio 6
0h 53min
Episódio 6
Episódio 6
When Brooke is found floating in a swampy river, strangled and barely conscious, Ted and Amanda hunt for her attacker to determine if Julian's murder case is connected.
2024-08-09
8.7
Episódio 7
0h 57min
Episódio 7
Episódio 7
The case heats up for Ted and Amanda as they find a second crime scene - where Julian was murdered - and land in the middle of Twist's turf war with the duboisia kingpin.
2024-08-16
8.7
Episódio 8
0h 58min
Episódio 8
Episódio 8
Ted and Amanda save Raph's life and solve Julian's murder, only to be faced with rescuing Ted's family from a predator who has had Ted in his crosshairs for years.
2024-08-23
8.7

Cast

Thomas Jane
Thomas Jane
Ted Conkaffey
Radha Mitchell
Radha Mitchell
Kelly
Nicole Chamoun
Nicole Chamoun
Amanda Pharrell
Brett Tucker
Brett Tucker
Colin
Zindzi Okenyo
Zindzi Okenyo
Sweeney
Miah Madden
Miah Madden
Tayla
Chloe Delle-Vedove
Chloe Delle-Vedove
Lilly
Ursula Yovich
Ursula Yovich
Ronnie
Simon Lyndon
Simon Lyndon
Twist

Where Watch

Images

Troppo Poster
Troppo Poster

Detailed Information

General Information

Original Title: Troppo

Creators: Hwang Dong-hyuk

Gender: Drama, Crime,

Seasons: 2

Episodes: 16

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

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

PHP com cURL

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

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

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

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