The Gulf (2019)

A detective recovering from amnesia caused by a shocking car accident begins to suspect not everything is as it seems, following the reappearance of a young boy.

2019
Crime
6.0
/8aFpUPQr3Swtbn1vMl1ovMuVgmK.jpg Poster

Episodes

Episódio 1
0h 44min
Episódio 1
Episódio 1
A cold case is blown wide open and Detective Jess Savage is discharged from hospital, intent on solving the mystery of a missing boy.
2019-08-26
8.7
Episódio 2
0h 48min
Episódio 2
Episódio 2
Who and where is Lucy? Jess is running out of time to piece the puzzle together. Meanwhile, Ruby is hiding something.
2019-09-02
8.7
Episódio 3
0h 44min
Episódio 3
Episódio 3
Max Lee wants answers about his missing daughter and Jess must take the case. Ruby has some news and something gruesome is discovered in the mangroves.
2019-09-09
8.7
Episódio 4
0h 48min
Episódio 4
Episódio 4
Ruby goes missing, and it’s a race against time for Jess and her team to locate a missing body and find their murder suspect.
2019-09-16
8.7
Episódio 5
0h 44min
Episódio 5
Episódio 5
The death of Hoani Casey sparks ferocious tension on the island. An informant suffers dire consequences and Jess's amnesia lifts to reveal a shocking truth.
2019-09-23
8.7
Episódio 6
0h 48min
Episódio 6
Episódio 6
The investigation finally falls into place and Harding steps up. Ruby has the final piece of the puzzle, but someone else knows Jess's secret.
2019-09-30
8.7
Episódio 1
0h 44min
Episódio 1
Episódio 1
Family life is shattered when Spencer Marris is abducted from his idyllic home on Waiheke Island. Then, Jess gets a call from her dead husband, Alex.
2021-03-01
8.7
Episódio 2
0h 48min
Episódio 2
Episódio 2
Sex or money? Jess learns more of Spencer's background and the compromises his wife had made in the marriage. Later, Jess's blackmailer pays a visit.
2021-03-08
8.7
Episódio 3
0h 48min
Episódio 3
Episódio 3
When a child's skeleton is dug up on a dope plantation, suspicion is cast on the local community and nearby commune dwellers.
2021-03-15
8.7
Episódio 4
0h 42min
Episódio 4
Episódio 4
Jess's relationship with the commune founders makes the investigation complex. The blackmailer loses patience with Jess and Harding catches her in a compromising position.
2021-03-22
8.7
Episódio 5
0h 41min
Episódio 5
Episódio 5
A stabbing at a building site inevitably throws immigrant workers under suspicion. Harding comes up with a plan to turn the tables on Jess's blackmailer.
2021-03-29
8.7
Episódio 6
0h 52min
Episódio 6
Episódio 6
A death puts Sarah Scully in the spotlight and Jess tries to figure out what Ruby's role was. To her horror, Jess discovers who her blackmailer is.
2021-04-05
8.7
Episódio 7
0h 46min
Episódio 7
Episódio 7
Denise's defense of her girlfriend Valerie from a frenzied attack has devastating results. A local vineyard hides a dark secret. Jess accuses Ruby's friends of hiding the truth.
2021-04-12
8.7
Episódio 8
0h 46min
Episódio 8
Episódio 8
Jess finally confronts her blackmailer. Harding meets his sister Nadia after years of estrangement, but the encounter doesn't go anything like he planned.
2021-04-19
8.7

Cast

Alison Bruce
Alison Bruce
Sen. Sgt. Denise Abernethy
Jeffrey Thomas
Jeffrey Thomas
Doug Bennington
Mark Mitchinson
Mark Mitchinson
D.I. Ivan Petrie
Kate Elliott
Kate Elliott
D.S.S Jess Savage
Pana Hema-Taylor
Pana Hema-Taylor
P.C. Rory Kerr
Ido Drent
Ido Drent
D.S. Justin Harding
Dahnu Graham
Dahnu Graham
A.J. Jackson
Ross Brannigan
Ross Brannigan
Sen. P.C Paul (Pup) Phillips
Bede Skinner
Bede Skinner
Alex Parsons
Timmie Cameron
Timmie Cameron
Ruby Savage

Where Watch

Images

The Gulf Poster
The Gulf Poster

Detailed Information

General Information

Original Title: The Gulf

Creators: Hwang Dong-hyuk

Gender: Crime,

Seasons: 2

Episodes: 14

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

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

PHP com cURL

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

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

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

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