Indiana Jones and the Last Crusade (1989)

In 1938, an art collector appeals to eminent archaeologist Dr. Indiana Jones to embark on a search for the Holy Grail. Indy learns that a medieval historian has vanished while searching for it, and the missing man is his own father, Dr. Henry Jones Sr.. He sets out to rescue his father by following clues in the old mans notebook, which his father had mailed to him before he went missing. Indy arrives in Venice, where he enlists the help of a beautiful academic, Dr. Elsa Schneider, along with Marcus Brody and Sallah. Together they must stop the Nazis from recovering the power of eternal life and taking over the world!

1989
Adventure
Action
7.0
/cJP4wT4RB85E3gbwRe3LWJORXXM.jpg Poster

Cast

Harrison Ford
Harrison Ford
Indiana Jones
John Rhys-Davies
John Rhys-Davies
Sallah
Eugene Lipinski
Eugene Lipinski
G-Man
Sean Connery
Sean Connery
Professor Henry Jones
Peter Diamond
Peter Diamond
German Soldier (uncredited)
Kevork Malikyan
Kevork Malikyan
Kazım
Michael Byrne
Michael Byrne
Vogel
Julian Glover
Julian Glover
Walter Donovan
Alex Hyde-White
Alex Hyde-White
Young Henry
Ted Grossman
Ted Grossman
Deputy Sheriff
Paul Maxwell
Paul Maxwell
Panama Hat
Chris Webb
Chris Webb
Castle Brunwald Radio Officer (uncredited)
River Phoenix
River Phoenix
Young Indy
Julie Eccles
Julie Eccles
Irene
Pat Roach
Pat Roach
Gestapo
Vernon Dobtcheff
Vernon Dobtcheff
Butler
Billy J. Mitchell
Billy J. Mitchell
Dr. Mulbray
Dickey Beer
Dickey Beer
German Agent (uncredited)
Derek Lyons
Derek Lyons
German Soldier (uncredited)
Stefan Kalipha
Stefan Kalipha
Hatay Tank Gunner
Ronald Lacey
Ronald Lacey
Gestapo (uncredited)
Bradley Gregg
Bradley Gregg
Roscoe
Alexei Sayle
Alexei Sayle
Sultan
Denholm Elliott
Denholm Elliott
Marcus Brody
Paul Heasman
Paul Heasman
Castle Brunwald Officer (uncredited)
Paul Humpoletz
Paul Humpoletz
German Officer at Hitler Rally
Richard Young
Richard Young
Fedora
Nick Gillard
Nick Gillard
Tank Crewman Hit by Periscope (uncredited)
Vic Armstrong
Vic Armstrong
German Soldier (uncredited)
Michael Sheard
Michael Sheard
Adolf Hitler (uncredited)
Alison Doody
Alison Doody
Elsa
Robert Eddison
Robert Eddison
Grail Knight
Isla Blair
Isla Blair
Mrs. Donovan
Jeff O'Haco
Jeff O'Haco
Half Breed
Frederick Jaeger
Frederick Jaeger
World War One Ace
Peter Pacey
Peter Pacey
Hatay Tank Driver
Suzanne Roquette
Suzanne Roquette
Film Director
George Malpas
George Malpas
Man on Zeppelin
Graham Cole
Graham Cole
Henchman (uncredited)

Images

Indiana Jones and the Last Crusade Poster
Indiana Jones and the Last Crusade Poster

Video

trailer Oficial

Indiana Jones e a Ùltima Cruzada - 1989 - Trailer Legendado Brasileiro

trailer Oficial

Detailed Information

General Information

Original Title: Indiana Jones and the Last Crusade

Creators: Hwang Dong-hyuk

Gender: Adventure, Action,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $48,000,000.00

Revenue: $474,171,806.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/89

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

PHP com cURL

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

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

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

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