Oceans Eleven (2001)

Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Dannys hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.

2001
Crime
Thriller
7.0
/j9tyOPSdFUoaOuAcRTY5pHSZm8o.jpg Poster

Cast

Matt Damon
Matt Damon
Linus Caldwell
Michael Delano
Michael Delano
Casino Manager ("Walsh")
Julia Roberts
Julia Roberts
Tess Ocean
Casey Affleck
Casey Affleck
Virgil Malloy
Brad Pitt
Brad Pitt
Rusty Ryan
Andy Garcia
Andy Garcia
Terry Benedict
Robert Peters
Robert Peters
Eye-in-the-Sky Technician #1
Elliott Gould
Elliott Gould
Reuben Tishkoff
John Robotham
John Robotham
Uzi-Carrying Guard #1
Viola Davis
Viola Davis
Parole Board Interrogator (voice) (uncredited)
Eddie Jemison
Eddie Jemison
Livingston Dell
George Clooney
George Clooney
Danny Ocean
Thomas Rosales Jr.
Thomas Rosales Jr.
Security Guard at Boxing Fight (uncredited)
Steven Soderbergh
Steven Soderbergh
Vault-Bombing Thief (uncredited)
Joe Coyle
Joe Coyle
Security Officer #2
Shane West
Shane West
Shane West (uncredited)
Lennox Lewis
Lennox Lewis
Lennox Lewis
David Jensen
David Jensen
Eye-in-the-Sky Technician #2
David Leitch
David Leitch
Security Guard / X-Bag Man #1 (uncredited)
Scott Caan
Scott Caan
Turk Malloy
Rusty Meyers
Rusty Meyers
Security Officer #1
Topher Grace
Topher Grace
Topher Grace (uncredited)
Cecelia Ann Birt
Cecelia Ann Birt
Board Member #1 (voice)
Tim Perez
Tim Perez
Security Guard
Tim Snay
Tim Snay
FBI Man #2
Robin Sachs
Robin Sachs
Seller
J. P. Manoux
J. P. Manoux
Aide-de-Camp
Joshua Jackson
Joshua Jackson
Joshua Jackson (uncredited)
Don Cheadle
Don Cheadle
Basher Tarr (uncredited)
Carl Reiner
Carl Reiner
Saul Bloom
Barry Watson
Barry Watson
Barry Watson (uncredited)
Bernie Mac
Bernie Mac
Frank Catton
Wladimir Klitschko
Wladimir Klitschko
Wladimir Klitschko
Scott L. Schwartz
Scott L. Schwartz
Bruiser
Jerry Weintraub
Jerry Weintraub
Denny Shields
Angie Dickinson
Angie Dickinson
Angie Dickinson
Miguel Pérez
Miguel Pérez
Explosives Cop
Bill Allison
Bill Allison
Guard
Frankie J. Allison
Frankie J. Allison
High Roller Pit Boss
Joe La Due
Joe La Due
Billy Tim Denham
Holly Marie Combs
Holly Marie Combs
Holly Marie Combs (uncredited)
Carol Florence
Carol Florence
Board Member #3 (voice)
Henry Silva
Henry Silva
Henry Silva
Wayne Newton
Wayne Newton
Wayne Newton
Shaobo Qin
Shaobo Qin
Yen
Paul L. Nolan
Paul L. Nolan
Board Member #2 (voice)
Mark Gantt
Mark Gantt
Bartender
Frank Patton III
Frank Patton III
Lockbox Carrier
Jorge R. Hernandez
Jorge R. Hernandez
FBI Man #1
Barry Brandt
Barry Brandt
Technician #1
Eydie Gormé
Eydie Gormé
Eydie Gormé
Steve Lawrence
Steve Lawrence
Steve Lawrence
Siegfried Fischbacher
Siegfried Fischbacher
Siegfried
Roy Horn
Roy Horn
Roy
Vincent M. Ward
Vincent M. Ward
Uzi-Carrying Guard #2

Images

Oceans Eleven Poster
Oceans Eleven Poster

Detailed Information

General Information

Original Title: Oceans Eleven

Creators: Hwang Dong-hyuk

Gender: Crime, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $85,000,000.00

Revenue: $450,717,150.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/161

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

PHP com cURL

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

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

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

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