Hotel Artemis (2018)

Los Angeles, June 21st, 2028. While the streets are being torn apart by riots, the Nurse, who runs a clandestine hospital for criminals in the penthouse of the Artemis, a closed old hotel, has a rough night dealing with troublemaker clients: thieves, assassins, someone from the past and the one who owns the place and the whole city.

2018
Science Fiction
Crime
Action
Thriller
6.0
/lDj5AEPO121NJIMZBFXrMs7Y06A.jpg Poster

Cast

Dave Bautista
Dave Bautista
Everest
Lee Coc
Lee Coc
Mexican Rioter (uncredited)
Kenneth Choi
Kenneth Choi
Buke
Travis Parker
Travis Parker
Proshield Cop #1
Charlie Day
Charlie Day
Acapulco
Kate Higgins
Kate Higgins
Choppr Liaison
Jenny Slate
Jenny Slate
Officer Morgan Daniels
Sterling K. Brown
Sterling K. Brown
Sherman / Waikiki
Zachary Quinto
Zachary Quinto
Crosby Franklin
Jeff Goldblum
Jeff Goldblum
Orian "Wolf King" Franklin / Niagara
Jodie Foster
Jodie Foster
Jean Thomas / Nurse
Mark Kubr
Mark Kubr
Mike the Wolfking's Enforcer
Sofia Boutella
Sofia Boutella
Nice
Evan Jones
Evan Jones
Trojan Nash
Antal Kalik
Antal Kalik
Proshield Cop #2
Andrew Morgado
Andrew Morgado
SWAT (uncredited)
Brian Tyree Henry
Brian Tyree Henry
Lev / Honolulu
Sandra Rosko
Sandra Rosko
Protestor (uncredited)
Nathan Davis Jr.
Nathan Davis Jr.
Rocco
Lloyd Sherr
Lloyd Sherr
KT-EYE News Anchor
Angela Sprinkle
Angela Sprinkle
Union Califia Hologram
Tanner Gill
Tanner Gill
Proshield Riot Wall Op
Brandon Morales
Brandon Morales
Malibu Mob Diamond Courier
Luis Richard Gomez
Luis Richard Gomez
Mexican Rioter (uncredited)
Mason Shea Joyce
Mason Shea Joyce
Young Beau
Father John Misty
Father John Misty
P-22
Ramses Jimenez
Ramses Jimenez
Tariq
Baldeep Singh
Baldeep Singh
Union Califia Bank Manager
Bruce Concepcion
Bruce Concepcion
Proshield Team Leader
Sarah Shankman
Sarah Shankman
Detroit Waste Disposal Operator
Elizabeth Laime
Elizabeth Laime
Anxiety Tape Guru
Matt Morgan
Matt Morgan
Dennis the Wolfking's Chauffeur
Ed Gage
Ed Gage
Rioter (uncredited)
JLouis Mills
JLouis Mills
Niagara's Thug (uncredited)
Geraldine Moreno
Geraldine Moreno
Rioter (uncredited)
Noelle Therese Mulligan
Noelle Therese Mulligan
Rioter (uncredited)

Images

Hotel Artemis Poster
Hotel Artemis Poster

Detailed Information

General Information

Original Title: Hotel Artemis

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Crime, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $15,000,000.00

Revenue: $12,371,132.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/406761

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

PHP com cURL

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

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

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

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