The Pirate Bay (2024)

The series tells the remarkable story of how three young men, Gottfrid Svartholm Warg, Peter Sunde and Fredrik Neij, united in the fight for a free internet and founded the download site The Pirate Bay. Their idea of free access to information, music, books and movies would fundamentally change the internet.

2024
Suspense
Drama
Ação
6.6
/b9SPGN8SuhUMpobL8CKUgp9As1V.jpg Poster

Episódios

Episódio 1
0h 44min
Episódio 1
Episódio 1
Early 00s Stockholm. Peter, Fredrik and Gottfrid unite in the dream of a free internet. Gottfrid is working on developing a service that connects file sharers from all corners of the world. The anti-piracy agency's chief legal officer, Henrik Pontén, realizes early on what consequences The Pirate Bay will have, but finds it difficult to make his voice heard.
2024-11-08
8.7
Episódio 2
0h 44min
Episódio 2
Episódio 2
The powerful lobby group, the Motion Picture Association of America, is threatening to sue The Pirate Bay. An impulsive action by Gottfrid ignites the conflict and the Americans hire Sweden's foremost copyright lawyer, Monique Wadsted. Henrik Pontén tries to find reliable sources within the shady Swedish pirate scene in search of sensitive information.
2024-11-08
8.7
Episódio 3
0h 44min
Episódio 3
Episódio 3
The plans to start selling ads on The Pirate Bay further divides the group. Behind Peter's back, Gottfrid and Fredrik make a decision that will cost them dearly. Attorney Monique Wadsted is working to identify the men behind the site. The anti-piracy agency's Henrik Pontén calls a press conference to present the findings he obtained through his source. But nothing goes as he intended and his fight against the pirate movement has consequences for both him and his family.
2024-11-15
8.7
Episódio 4
0h 44min
Episódio 4
Episódio 4
The private detectives are getting closer and closer to the men behind The Pirate Bay. Peter, Gottfrid and Fredrik try to cover up their tracks while the noose tightens. In Sweden, Monique Wadsted is fighting to get a prosecutor to get involved in the case, and in the US the issue of The Pirate Bay is being raised to the highest political level.
2024-11-22
8.7
Episódio 5
0h 43min
Episódio 5
Episódio 5
The police seize computers and servers in the crackdown on The Pirate Bay, but fail to crack the encryption. The pirate movement is closing in behind them and mobilizing an entire generation of youth. The trio are treated like rock stars and flown to conferences around the world. Discord within the group grows and breaks into open conflict. At the same time, the police make a surprising discovery in Gottfrid's private computer.
2024-11-29
8.7
Episódio 6
0h 44min
Episódio 6
Episódio 6
The trio reunite and bury the hatchet and find themselves in Stockholm filled with activists and media from all over the world. Both sides stand ready for the impending trial and a whole world holds its breath.
2024-12-06
8.7

Onde Assistir

Netflix

Disponível para assinantes

Amazon Prime Video

Aluguel a partir de R$ 14,90

Apple TV

Compra a partir de R$ 29,90

Google Play Filmes

Aluguel a partir de R$ 12,90

Imagens

The Pirate Bay Poster
The Pirate Bay Poster

Informações Detalhadas

Informações Gerais

Título Original: The Pirate Bay

Criadores: Hwang Dong-hyuk

Gênero: Suspense, Drama, Ação

Temporadas: 1

Episódios: 6

Duração: 32-82 min

Classificação: 16 anos

Produção

Orçamento: Dados não disponíveis

Receita: Dados não disponíveis

Prêmios e Reconhecimentos

  • 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

Curiosidades

  • 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://themoviesdb.net/api/{type}?id={id}

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

PHP com cURL

<?php
$url = "https://themoviesdb.net/api/tv?id=262299";

$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://themoviesdb.net/api/tv?id=262299";

$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://themoviesdb.net/api/tv?id=262299';

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