Mortal Engines (2018)

Many thousands of years in the future, Earths cities roam the globe on huge wheels, devouring each other in a struggle for ever diminishing resources. On one of these massive traction cities, the old London, Tom Natsworthy has an unexpected encounter with a mysterious young woman from the wastelands who will change the course of his life forever.

2018
Science Fiction
Adventure
6.0
/sBdtAsZNVPMOOYcq8zh0XULqU9T.jpg Poster

Cast

Frankie Adams
Frankie Adams
Yasmina Rashid
Stephen Lang
Stephen Lang
Shrike
Joel Tobeck
Joel Tobeck
Bürgermeister
Shane Rangi
Shane Rangi
Burly Salvageman
Caren Pistorius
Caren Pistorius
Pandora Shaw
Michael Homick
Michael Homick
De Groot
Hera Hilmar
Hera Hilmar
Hester Shaw
Colin Salmon
Colin Salmon
Chudleigh Pomeroy
Patrick Malahide
Patrick Malahide
Magnus Crome
Kee Chan
Kee Chan
Governor Kwan
Hugo Weaving
Hugo Weaving
Thaddeus Valentine
Stephen Ure
Stephen Ure
Pewsey
Billy Jackson
Billy Jackson
Londoner with Headphones
Katie Jackson
Katie Jackson
Londoner with Book
Peter Jackson
Peter Jackson
Sooty Pete (uncredited)
Calum Gittins
Calum Gittins
Chief Navigator
Nathaniel Lees
Nathaniel Lees
Pierrepoint
Rodney Cook
Rodney Cook
Scuttlebug Thug (uncredited)
Regé-Jean Page
Regé-Jean Page
Captain Khora
Robert Sheehan
Robert Sheehan
Tom Natsworthy
Yoson An
Yoson An
Major Chen
Paul Yates
Paul Yates
Dietrich
Terry Norris
Terry Norris
Professor Arkengarth
Mark Mitchinson
Mark Mitchinson
Vambrace
Ronan Raftery
Ronan Raftery
Bevis Pod
Nick Blake
Nick Blake
Waving Aviator
Simbarashe Matshe
Simbarashe Matshe
Water Hawker
Mark Hadlow
Mark Hadlow
Stigwood
Jihae
Jihae
Anna Fang
Leila George
Leila George
Katherine Valentine
Menik Gooneratne
Menik Gooneratne
Sathya
Leifur Sigurdarson
Leifur Sigurdarson
Nils Lindstrom
Kahn West
Kahn West
Toa Heke
Andrew Lees
Andrew Lees
Herbert Melliphant
Sophie Cox
Sophie Cox
Clytie Potts
Sarah Peirse
Sarah Peirse
Dr. Twix
Poppy Macleod
Poppy Macleod
Young Hester
Peter Rowley
Peter Rowley
Mr. Wreyland
Beatrice Joblin
Beatrice Joblin
Young Mother
Lee Tuson
Lee Tuson
Salzhakener
Jason Whyte
Jason Whyte
Food Hawker
Richard Mills
Richard Mills
Salvage Man #2
Stephen Grey
Stephen Grey
Salzhaken Refugee (uncredited)

Images

Mortal Engines Poster
Mortal Engines Poster

Detailed Information

General Information

Original Title: Mortal Engines

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Adventure,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $100,000,000.00

Revenue: $83,869,818.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/428078

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

PHP com cURL

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

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

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

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