Nobel (2016)

Lieutenant Erling Riiser is on his way back to Norway after a long stay in Afghanistan. Much has gone wrong, several soldiers are missing from the Hercelus-plane. After only one day in Norway, Erling receives a text message saying an old acquaintance from Afghanistan is in Oslo - which can mean only one thing: A womans life is in danger

2016
Drama
7.0
/omr7oxw3FTP1KrAOsqLh6FZp4sF.jpg Poster

Episodes

Episódio 1 / Episódio 2
1h 26min
Episódio 1
Episódio 1 / Episódio 2
Durante uma operação militar no Afeganistão, Erling acidentalmente toca em uma mulher. Ao voltar à Noruega, ele descobre que ela apanhou do marido.
2016-09-25
8.7
Episódio 3
0h 44min
Episódio 2
Episódio 3
No Afeganistão, o pelotão passa por momentos de angústia. Ekeberg suspende Erling. Johanne oferece ajuda.
2016-10-02
8.7
Episódio 4
0h 44min
Episódio 3
Episódio 4
A reunião secreta do ministro das Relações Exteriores no Afeganistão causa um escândalo na Noruega. Jon Petter aparece na TV. Um repórter consegue uma dica explosiva.
2016-10-09
8.7
Episódio 5
0h 45min
Episódio 4
Episódio 5
Erling é exposto pela mídia e precisa limpar seu nome. No Afeganistão, Zamani é colocado em uma lista de assassinatos. Johanne entra em ação.
2016-10-16
8.7
Episódio 6
0h 45min
Episódio 5
Episódio 6
Johanne se torna cada vez mais distante de Erling. Erling e Jon Petter descobrem uma ligação com a Fruit for Life. Johanne percebe que Hektor está mentindo.
2016-10-23
8.7
Episódio 7
0h 43min
Episódio 6
Episódio 7
Johanne conta ao ministro das Relações Exteriores sobre o acordo de Hektor. A reunião de Rolf no Afeganistão fracassa. Adella ajuda Jon Petter a mudar de ideia.
2016-10-30
8.7
Episódio 8
0h 44min
Episódio 7
Episódio 8
Erling concorda em liderar a equipe de segurança de Rolf e descobre quem enviou o texto a Zamani. Uma reunião em Cabul acaba mal. O vencedor do Nobel da Paz é anunciado.
2016-11-06
8.7

Cast

Mads Sjøgård Pettersen
Mads Sjøgård Pettersen
Håvard Bakkeli
Aksel Hennie
Aksel Hennie
Erling Riiser
Christian Rubeck
Christian Rubeck
Minister of Foreign Affairs Johan Ruud
Tuva Novotny
Tuva Novotny
Johanne Riiser
Dennis Storhøi
Dennis Storhøi
Jørund Ekeberg
Anders Danielsen Lie
Anders Danielsen Lie
Jon Petter Hals
Kyrre Hellum
Kyrre Hellum
Jan Burås
Odd-Magnus Williamson
Odd-Magnus Williamson
Hans Ivar Johanssen
Danica Ćurčić
Danica Ćurčić
Adella Hanefi
Hallvard Holmen
Hallvard Holmen
Rolf Innherad
Rolf Kristian Larsen
Rolf Kristian Larsen
Sven Rasch
Eirik Evjen
Eirik Evjen
Sigurd Sønsteby
Mattis Herman Nyquist
Mattis Herman Nyquist
Hektor Stolt-Hansen
Heidi Toini
Heidi Toini
Charlotte Heiberg
Ingrid Jørgensen Dragland
Ingrid Jørgensen Dragland
Minister of Defence Kjersti Mo
Atheer Adel
Atheer Adel
Sharif Zamani
Samuel Fröler
Samuel Fröler
Gunnar Riiser
Ayesha Wolasmal
Ayesha Wolasmal
Wasima Zamani
Ellen Horn
Ellen Horn
Nora Backer

Where Watch

Images

Nobel Poster
Nobel Poster

Detailed Information

General Information

Original Title: Nobel

Creators: Hwang Dong-hyuk

Gender: Drama,

Seasons: 1

Episodes: 7

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

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

PHP com cURL

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

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

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

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