Noah (2014)

A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.

2014
Adventure
Drama
5.0
/4gdMPqgL10Gpzz10gYRMXxdINVj.jpg Poster

Cast

Douglas Booth
Douglas Booth
Shem
Anthony Hopkins
Anthony Hopkins
Methuselah
Mark Margolis
Mark Margolis
Magog (voice)
Russell Crowe
Russell Crowe
Noah
Nick Nolte
Nick Nolte
Samyaza (voice)
Marton Csokas
Marton Csokas
Lamech
Ezra Barnes
Ezra Barnes
Refugee Father
Anna Kuchma
Anna Kuchma
Refugee (uncredited)
Anne Bergstedt Jordanova
Anne Bergstedt Jordanova
Wife Maiden (uncredited)
David Itchkawitz
David Itchkawitz
Wedge Soldier (uncredited)
Kevin Durand
Kevin Durand
Rameel (voice)
Ray Winstone
Ray Winstone
Tubal-cain
Raymond Mamrak
Raymond Mamrak
Refugee (uncredited)
Jim Ford
Jim Ford
Refugee (uncredited)
Logan Lerman
Logan Lerman
Ham
Madison Davenport
Madison Davenport
Na'el
Jennifer Connelly
Jennifer Connelly
Naameh
Jóhannes Haukur Jóhannesson
Jóhannes Haukur Jóhannesson
Cain (uncredited)
Stephen Stanton
Stephen Stanton
Additional Voices (uncredited)
Maria Shamkalian
Maria Shamkalian
Outcast (uncredited)
Emma Watson
Emma Watson
Ila
Frank Langella
Frank Langella
Og (voice)
McKenzie Shea
McKenzie Shea
Maiden (uncredited)
Finn Wittrock
Finn Wittrock
Young Tubal-cain
Gregg Bello
Gregg Bello
Testu-col
Sami Gayle
Sami Gayle
Refugee Daughter
Dakota Goyo
Dakota Goyo
Young Noah
Don Harvey
Don Harvey
Mean Uncle
Marek Radin
Marek Radin
Soldier (uncredited)
Leo McHugh Carroll
Leo McHugh Carroll
Japheth
Gavin Casalegno
Gavin Casalegno
Young Shem
Nolan Gross
Nolan Gross
Young Ham
Ariane Rinehart
Ariane Rinehart
Eve
Sophie Nyweide
Sophie Nyweide
Younger Sister
Nurit Monacelli
Nurit Monacelli
Refugee Mother
Barry Sloane
Barry Sloane
Poacher Leader
Arna Magnea Danks
Arna Magnea Danks
Laughing Poacher
Arnar Dan
Arnar Dan
Abel (uncredited)
Gabriel F. Bellotti
Gabriel F. Bellotti
Refugee (uncredited)
Lucas McHugh Carroll
Lucas McHugh Carroll
Refugee (uncredited)
Adam Celentano
Adam Celentano
Refugee (uncredited)
Ludovic Coutaud
Ludovic Coutaud
Refugee (uncredited)
Jeff El Eini
Jeff El Eini
Soldier (uncredited)
Kirk Larsen
Kirk Larsen
Warlord (uncredited)
Davy J. Marr
Davy J. Marr
Refugee (uncredited)
Brian Matthews
Brian Matthews
Soldier (uncredited)
Róisín Monaghan
Róisín Monaghan
Refugee (uncredited)
Julian Murdoch
Julian Murdoch
Warlord's Child (uncredited)
Simon Pearl
Simon Pearl
Additional Voices (uncredited)
Giovanni Sanseviero
Giovanni Sanseviero
The Blacksmith Boss (uncredited)
Sarah Schoofs
Sarah Schoofs
Refugee (uncredited)
Lawrence Smith
Lawrence Smith
Warlord (uncredited)
Boriana Williams
Boriana Williams
Refugee (uncredited)

Images

Noah Poster
Noah Poster

Detailed Information

General Information

Original Title: Noah

Creators: Hwang Dong-hyuk

Gender: Adventure, Drama,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $125,000,000.00

Revenue: $362,600,000.00

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/movie/86834

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

PHP com cURL

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

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

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

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