Last Action Hero (1993)

After his fathers death, a young boy finds solace in action movies featuring an indestructible cop. Given a magic ticket by a theater manager, he is transported into the film and teams up with the cop to stop a villain who escapes into the real world.

1993
Family
Fantasy
Adventure
Action
Comedy
6.0
/9HiIRS8tqCykYHSwJjAxkuJCGfV.jpg Poster

Cast

Charles Dance
Charles Dance
Benedict
Michael Chieffo
Michael Chieffo
Monroe
Jean-Claude Van Damme
Jean-Claude Van Damme
Jean-Claude Van Damme (uncredited)
Sven-Ole Thorsen
Sven-Ole Thorsen
Gunman
Colleen Camp
Colleen Camp
Ratcliff
Arnold Schwarzenegger
Arnold Schwarzenegger
Jack Slater / Self
Danny DeVito
Danny DeVito
Whiskers (voice) (uncredited)
Sharon Stone
Sharon Stone
Catherine Tramell
Billy D. Lucas
Billy D. Lucas
SWAT Cop
Thomas Rosales Jr.
Thomas Rosales Jr.
Vivaldi Henchman (uncredited)
Peter Kent
Peter Kent
Maitre D' (uncredited)
Al Leong
Al Leong
Vivaldi Gunmen (uncredited)
Nick Dimitri
Nick Dimitri
Funeral Doctor
Jim Belushi
Jim Belushi
James Belushi
Noah Emmerich
Noah Emmerich
Rookie
Frank McRae
Frank McRae
Lieutenant Dekker
Robert Patrick
Robert Patrick
T-1000
Chevy Chase
Chevy Chase
Self
F. Murray Abraham
F. Murray Abraham
John Practice
Tina Turner
Tina Turner
The Mayor
Robert Prosky
Robert Prosky
Nick
Karen Duffy
Karen Duffy
Self
Ian McKellen
Ian McKellen
Death
Damon Wayans
Damon Wayans
Self
Tom Noonan
Tom Noonan
Ripper / Tommy Noonan
Angie Everhart
Angie Everhart
Video Babe
Ryan Todd
Ryan Todd
Andrew Slater
Art Carney
Art Carney
Frank
Maria Shriver
Maria Shriver
Self
Austin O'Brien
Austin O'Brien
Danny Madigan
Rick Ducommun
Rick Ducommun
Ripper's Agent
Joan Plowright
Joan Plowright
Teacher
Chris Connelly
Chris Connelly
Self
Bridgette Wilson-Sampras
Bridgette Wilson-Sampras
Whitney / Meredith
Anthony Quinn
Anthony Quinn
Tony Vivaldi
Mercedes Ruehl
Mercedes Ruehl
Irene Madigan
Larry Ferguson
Larry Ferguson
Self
Leeza Gibbons
Leeza Gibbons
Self
MC Hammer
MC Hammer
M.C. Hammer
Little Richard
Little Richard
Self
Melvin Van Peebles
Melvin Van Peebles
Self
Mike Muscat
Mike Muscat
Cop in L.A. Station
John Finnegan
John Finnegan
Watch Commander
Bobbie Brown
Bobbie Brown
Video Babe
Jeffrey Braer
Jeffrey Braer
Skeezy
Anthony Peck
Anthony Peck
Cop at Ex-Wife's House
Anna Navarro
Anna Navarro
Cop in Station
Dex Elliott Sanders
Dex Elliott Sanders
Mitchell
Wendle Josepher
Wendle Josepher
Candy Girl
Michael V. Gazzo
Michael V. Gazzo
Torelli
Lee Reherman
Lee Reherman
Krause
Tiffany Lynne Puhy
Tiffany Lynne Puhy
Autograph Seeker
Lena Banks
Lena Banks
Movie House Patron (uncredited)
Michael Straka
Michael Straka
Autograph Seeker

Images

Last Action Hero Poster
Last Action Hero Poster

Video

teaser Oficial

O Último Grande Herói (1993) | Trailer Oficial [Legendado]

teaser Oficial

Detailed Information

General Information

Original Title: Last Action Hero

Creators: Hwang Dong-hyuk

Gender: Family, Fantasy, Adventure, Action, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $85,000,000.00

Revenue: $137,298,489.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/9593

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

PHP com cURL

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

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

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

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