The Storyteller (1988)

The Storyteller aided by his cynical dog, narrates classic folk tales, fables, and legends.

1988
Family
Drama
Action & Adventure
Sci-Fi & Fantasy
8.0
/4zyfBsIxQfEK0RcfJvwXgHTKqfn.jpg Poster

Episodes

Episódio 1
0h 25min
Episódio 1
Episódio 1
Returning from war, a young soldier trades his last biscuit for a magical sack... into which anything summoned will enter! Trapping devils and even death itself, the soldier brings peace to his country. But death soon proves a greater enemy captured than free! From an early Russian folk tale.
1988-05-15
8.7
Episódio 2
0h 25min
Episódio 2
Episódio 2
Fearnot is a young man who is incapapble of feeling fear. He leaves his home and his true love to embark on a vast journey to experience the shudder of fear. No monster or creature that he meets, however horrible or terrifying, makes him afraid. It is only upon return that he learns that true fear exists in the places which are closest to us. From an early German folk tale.
1988-05-22
8.7
Episódio 3
0h 25min
Episódio 3
Episódio 3
Upon news of the birth of a Luck child - a peasant boy predicted by wise man to one day wear the crown - the cruel-hearted king seeks out the boy, pretending to take him under his terrible wing. Will luck indeed play a part in our hero's final destiny? From an early Russian folk tale.
1988-05-29
8.7
Episódio 4
0h 25min
Episódio 4
Episódio 4
The storyteller recalls his days of servitude to the king for bamboozling the royal cook out of a free meal. A story a day was his punishment - or else he'll boil in the cook's cauldron of oil! All goes well until the final day... when he can't think of a story to save his life! From an early Celtic folk tale.
1988-06-05
8.7
Episódio 5
0h 25min
Episódio 5
Episódio 5
Hans, a hedgehog-boy, feels ostracized in his town so he runs away. Twenty years later, Hans helps a king lost in the woods find his way back to his kingdom. The king rewards Hans with the first thing that the king will see when he re-enters his kingdom. But when the first thing he sees turns out to be his beautiful daughter, will despair take hold or can love prevail? From an early German folk tale.
1988-06-12
8.7
Episódio 6
0h 25min
Episódio 6
Episódio 6
After using her powers to charm the widowed king into marrying her, an evil witch sees his children standing in the way of her power. She uncovers the children’s secret hiding place and turns the three princes into ravens. The ravens tell the princess she cannot speak a word for three years, three months and three days or they will remain forever as birds. From an early German folk tale.
1988-06-19
8.7
Episódio 7
0h 25min
Episódio 7
Episódio 7
Upon fleeing her kingdom to escape an arranged marriage, the lovely Princess Sapsorrow toils in the kitchen of a faraway palace, disguised as an ugly hag. Her masquerade is no ball, as Sapsorrow has fallen in love with a prince, who sees her only as a peasant!
1988-06-26
8.7
Episódio 8
0h 25min
Episódio 8
Episódio 8
A young prince is tricked into helping a heartless giants escape from the king’s dungeon. The evil giant unleashes terror across the land and those who go off to fight him never return. The young prince becomes the servant of the giant and tries to find where the giant’s heart is hidden. But even if he were able to get the heart, can all be made right once more? From an early German folk tale.
1988-07-03
8.7
Episódio 9
0h 25min
Episódio 9
Episódio 9
A girl who was adopted by an abusive troll finally is freed with the help of a white lion. When her betrothed does not return after a trip, the girl is grief-stricken to learn that the troll's sister had put a spell on him and plans to marry him. The white lion appears again and helps the girl by giving her three magical gifts. From an early German folk tale.
1988-07-10
8.7

Cast

John Hurt
John Hurt
The Storyteller

Images

The Storyteller Poster
The Storyteller Poster

Detailed Information

General Information

Original Title: The Storyteller

Creators: Hwang Dong-hyuk

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

Seasons: 1

Episodes: 9

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

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

PHP com cURL

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

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

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

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