The Librarians: The Next Chapter (2025)

A Librarian from the past time travels to the present and finds himself stuck here. When he returns to his castle, which is now a museum, he inadvertently releases magic across the continent. He is given a new team to help him clean up the mess he made, forming a new team of Librarians.

2025
Action & Adventure
Sci-Fi & Fantasy
6.0
/w2PhnfYgY1yjxnUc1M4Jp5CjXvD.jpg Poster

Episodes

Episódio 1
0h 50min
Episódio 1
Episódio 1
When a Librarian from 200 years ago reappears today, he brings back to life a long-closed magical Library and accidentally resurrects an evil Drekavac. The Librarian, along with a quickly assembled team, must stop the Drekavac before it can kill and multiply.
2025-05-25
8.7
Episódio 2
0h 44min
Episódio 2
Episódio 2
Our newly assembled Librarians crew investigates a mysterious "dancing sickness," leading them to a showdown with a powerful magical factioneer at a professional ballet company.
2025-05-26
8.7
Episódio 3
0h 45min
Episódio 3
Episódio 3
Half of the team becomes trapped on a runaway ghost train, and the rest of the team must help solve the unresolved business of the ghosts on board.
2025-06-02
8.7
Episódio 4
0h 45min
Episódio 4
Episódio 4
The Librarians head to Paris after a string of robberies leaves mysteriously lovestruck victims in their wake.
2025-06-09
8.7
Episódio 5
0h 42min
Episódio 5
Episódio 5
The team goes to a college campus with a world-class observatory to discover who is using the Crystal of Dr. John Dee to steal people's memories, in order to own the future.
2025-06-16
8.7
Episódio 6
0h 42min
Episódio 6
Episódio 6
When the magic door reroutes Charlie, Lysa and Connor to a bizarre manor where a series of Agatha Christie-style murders take place, they must figure out whodunnit, while Vikram tries to track them down with the help of a mysterious tarot card reader.
2025-06-23
8.7
Episódio 7
0h 43min
Episódio 7
Episódio 7
Connor is forced to reconnect with people from his pre-Library life, and must defeat an old adversary who has grown powerful in his absence.
2025-06-30
8.7
Episódio 8
0h 43min
Episódio 8
Episódio 8
After a wild bachelorette party with Lysa's childhood best friend, the team wakes up in rough shape and hungover, with no idea how they ended up where they are.
2025-07-07
8.7
Episódio 9
0h 43min
Episódio 9
Episódio 9
While on a visit to a small-town festival, Connor encounters the very first vampire, and finds himself fighting the clock to save himself from turning into one.
2025-07-14
8.7
Episódio 10
0h 42min
Episódio 10
Episódio 10
When Vikram attempts to return to 1847 (via a homemade time machine), he inadvertently travels the entire team back to the days of King Arthur, where they learn the truth about a Knight of the Round Table, Camelot, and ... Elaine.
2025-07-21
8.7
Episódio 11
0h 42min
Episódio 11
Episódio 11
When graffiti starts coming to life and threatening a teenage girl, the team have to work out how these strange events are related to Gregor's Hammer -- and the imminent return of Gregor himself.
2025-07-28
8.7
Episódio 12
0h 42min
Episódio 12
Episódio 12
General Gregor retrieves the Sword of Mars and uses it to take over the country of Caucasylvia (remember from the Train episode), gaining control of their nuclear arsenal. The team must steal the Sword to prevent world calamity.
2025-08-04
8.7

Cast

Jessica Green
Jessica Green
Charlie Cornwall
Caroline Loncq
Caroline Loncq
Elaine Astalot
Callum McGowan
Callum McGowan
Vikram Chamberlin
Olivia Morris
Olivia Morris
Lysa Pascal
Bluey Robinson
Bluey Robinson
Connor Green

Where Watch

Images

The Librarians: The Next Chapter Poster
The Librarians: The Next Chapter Poster

Detailed Information

General Information

Original Title: The Librarians: The Next Chapter

Creators: Hwang Dong-hyuk

Gender: Action & Adventure, Sci-Fi & Fantasy,

Seasons: 2

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

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

PHP com cURL

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

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

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

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