The Thomas Crown Affair (1999)

Bored billionaire executive Thomas Crown entertains himself by stealing a Monet from a reputed museum with an elaborate diversion. When Catherine Banning, the insurance companys investigator, takes an interest in Crown, he may have met his match, and a complicated back-and-forth game with seductive undertones begins between them.

1999
Drama
Romance
Crime
6.0
/fCKJcTV1oeMxenBJ3hfXJfDeCCL.jpg Poster

Cast

Pierce Brosnan
Pierce Brosnan
Thomas Crown
Mark Margolis
Mark Margolis
Heinrich Knutzhorn
Dennis Creaghan
Dennis Creaghan
Jim Lenox (Museum Director)
Faye Dunaway
Faye Dunaway
Psychiatrist
Diana Berry
Diana Berry
Museum Patron (uncredited)
Rene Russo
Rene Russo
Catherine Banning
James Saito
James Saito
Paul Cheng
Frankie Faison
Frankie Faison
Det. Paretti
George Christy
George Christy
Senior Museum Guard
Ira Wheeler
Ira Wheeler
Old Man
Simon Jones
Simon Jones
Catherine's Accountant (voice) (uncredited)
Tony Cucci
Tony Cucci
Watching Cop
Ben Gazzara
Ben Gazzara
Andrew Wallace
Mimi Weddell
Mimi Weddell
National Art Club Guest
Denis Leary
Denis Leary
Det. Michael McCann
Ritchie Coster
Ritchie Coster
Janos
James Yaegashi
James Yaegashi
Crown Acquisitions Executive
Gregg Bello
Gregg Bello
Iggy
Mark Zeisler
Mark Zeisler
Bulldog
Jane DeNoble
Jane DeNoble
Crown Acquisitions Employee
Teddy Coluca
Teddy Coluca
Detective in Restaurant
Dominic Marcus
Dominic Marcus
Museum Security Guard
Marion McCorry
Marion McCorry
Stewardess
Fritz Weaver
Fritz Weaver
John Reynolds (Golf Buddy)
Daniel Oreskes
Daniel Oreskes
Petru
Richard Russell Ramos
Richard Russell Ramos
Art Inspector (Dr. Cornelius)
Michael Lombard
Michael Lombard
Proctor Bobby McKinley
Tom Bloom
Tom Bloom
Crown Imposter at Heliport
Yusef Bulos
Yusef Bulos
Second Jeweler
Charles Keating
Charles Keating
Friedrich Golchan
R.E. Rodgers
R.E. Rodgers
Uniform Cop
Paul Geoffrey
Paul Geoffrey
Another Cop
Tom Tammi
Tom Tammi
Businessman
John Elsen
John Elsen
New York City Cop
Timothy Klein
Timothy Klein
Officer Klein (uncredited)
Josh Mowery
Josh Mowery
Businessman (uncredited)
Robert Lewis Stephenson
Robert Lewis Stephenson
Museum Security Guard
Mark Zimmerman
Mark Zimmerman
Bulldog
Sean Haberle
Sean Haberle
Ramp Manager
J. Paul Boehmer
J. Paul Boehmer
Museum Detective
Daniel Southern
Daniel Southern
Crown Acquisitions Executive
Robert Ian Mackenzie
Robert Ian Mackenzie
Jeweler
Steve Bilich
Steve Bilich
Taxi Driver (uncredited)
Mike Danner
Mike Danner
Forklift Operator
Cynthia Darlow
Cynthia Darlow
Crown's Secretary (Daria)
Esther Cañadas
Esther Cañadas
Anna Knudsen
Robert Spillane
Robert Spillane
Crown Acquisitions Security Officer
David Adkins
David Adkins
Son
John Thrall Bush
John Thrall Bush
Museum Security Guard
Gloria Barnes
Gloria Barnes
National Art Club Guest
Michael Charles
Michael Charles
Detective in Restaurant
Victoria Rong
Victoria Rong
Model #2 (uncredited)

Images

The Thomas Crown Affair Poster
The Thomas Crown Affair Poster

Detailed Information

General Information

Original Title: The Thomas Crown Affair

Creators: Hwang Dong-hyuk

Gender: Drama, Romance, Crime,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $48,000,000.00

Revenue: $124,305,181.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/913

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

PHP com cURL

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

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

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

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