The Valet (2006)

Caught by tabloid paparazzi with his mistress Elena, a famous and beautiful fashion model, billionaire Pierre Levasseur tries to avoid a divorce by inventing a preposterous lie. He uses the presence of a passerby in the photo to claim to his wife that its not him Elena is seeing but the other man, one François Pignon. Pignon is a modest little man who works as a parking valet. To make the story convincing, Elena has to move in with Pignon.

2006
Comedy
5.0
/8pl9iJqG6Fw11jdgtM37skcBkX1.jpg Poster

Cast

Alice Taglioni
Alice Taglioni
Éléna Simonsen
Kristin Scott Thomas
Kristin Scott Thomas
Christine Levasseur
Thierry Nenez
Thierry Nenez
Perrache
Virginie Ledoyen
Virginie Ledoyen
Emilie
Dany Boon
Dany Boon
Richard
Sandra Moreno
Sandra Moreno
Levasseur's secretary
Paulette Frantz
Paulette Frantz
Richard's mother
Daniel Auteuil
Daniel Auteuil
Pierre Levasseur
Richard Berry
Richard Berry
Maître Foix
Philippe Magnan
Philippe Magnan
Berman
Gad Elmaleh
Gad Elmaleh
François Pignon
Jean-Pol Brissart
Jean-Pol Brissart
Mauricet
Alexandre Brik
Alexandre Brik
Ken
Patrick Mille
Patrick Mille
Pascal
Philippe Beglia
Philippe Beglia
Butler
Noémie Lenoir
Noémie Lenoir
Karine
Laurent Gamelon
Laurent Gamelon
Paul
Michel Aumont
Michel Aumont
Doctor
Irina Ninova
Irina Ninova
Marie
Michèle Garcia
Michèle Garcia
Louise Pignon
Philippe Brigaud
Philippe Brigaud
Mr. Hervé
Michel Jonasz
Michel Jonasz
André Pignon
Jean-Yves Chilot
Jean-Yves Chilot
Hervé

Images

The Valet Poster
The Valet Poster

Detailed Information

General Information

Original Title: The Valet

Creators: Hwang Dong-hyuk

Gender: Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $29,326,868.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/21427

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

PHP com cURL

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

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

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

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