National Lampoons European Vacation (1985)

The Griswolds win a vacation to Europe on a game show, and so pack their bags for the continent. They do their best to catch the flavor of Europe, but they just dont know how to be be good tourists. Besides, they have trouble taking holidays in countries where they CAN speak the language.

1985
Adventure
Romance
Comedy
6.0
/vnwcFy2j4pLRX4oD3dafnaxHD6F.jpg Poster

Cast

John Astin
John Astin
Kent
William Zabka
William Zabka
Jack
Chevy Chase
Chevy Chase
Clark Griswold
Beverly D'Angelo
Beverly D'Angelo
Ellen Griswold
Robbie Coltrane
Robbie Coltrane
Man in the Bathroom
Malcolm Danare
Malcolm Danare
The Froegers' Son
Derek Deadman
Derek Deadman
Taxi Driver
Gary Owens
Gary Owens
"Pig in a Poke" Announcer (uncredited)
Eric Idle
Eric Idle
The Bike Rider
Alice Sapritch
Alice Sapritch
Dowager on the Eiffel Tower
Jacques Herlin
Jacques Herlin
Hotel Desk Clerk
Elizabeth Arlen
Elizabeth Arlen
Mrs. Garland
Jeannette Charles
Jeannette Charles
Queen Elizabeth
Tom Willett
Tom Willett
"Pig in a Poke" Audience Member (uncredited)
Paul Bartel
Paul Bartel
Mr. Froeger
Ballard Berkeley
Ballard Berkeley
English Motorist #2
Moon Unit Zappa
Moon Unit Zappa
Rusty's California Girl
Gloria Charles
Gloria Charles
Stewardess
Maureen Lipman
Maureen Lipman
Lady in the Bed
Dana Hill
Dana Hill
Audrey Griswold
Mel Smith
Mel Smith
Hotel Manager
Jason Lively
Jason Lively
Rusty Griswold
Cynthia Szigeti
Cynthia Szigeti
Mrs. Froeger
Victor Lanoux
Victor Lanoux
Thief
Willy Millowitsch
Willy Millowitsch
Fritz Spritz
Sheila Kennedy
Sheila Kennedy
Game Show Hostess #1
Angus MacKay
Angus MacKay
Announcer at Court
Jacques Maury
Jacques Maury
Hotel's Assistant Manager
Didier Pain
Didier Pain
Video Camera Thief
Massimo Sarchielli
Massimo Sarchielli
The Other Thief

Images

National Lampoons European Vacation Poster
National Lampoons European Vacation Poster

Detailed Information

General Information

Original Title: National Lampoons European Vacation

Creators: Hwang Dong-hyuk

Gender: Adventure, Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $17,000,000.00

Revenue: $49,364,621.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/11418

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

PHP com cURL

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

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

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

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