Green Zone (2010)

During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors are dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.

2010
War
Adventure
Drama
Action
Thriller
6.0
/wfpGtqT5Jq52pCTPELLc9M5hy04.jpg Poster

Cast

Matt Damon
Matt Damon
Roy Miller
Brendan Gleeson
Brendan Gleeson
Martin Brown
Khalid Abdalla
Khalid Abdalla
Freddy
Jason Isaacs
Jason Isaacs
Maj. Briggs
Amy Ryan
Amy Ryan
Lawrie Dayne
Michael O'Neill
Michael O'Neill
Colonel Bethel
Martin McDougall
Martin McDougall
Brown's Aide
Raad Rawi
Raad Rawi
Ahmed Zubaidi
Omar Berdouni
Omar Berdouni
Righteous Ali
Antoni Corone
Antoni Corone
Col. Lyons
Greg Kinnear
Greg Kinnear
Clark Poundstone
Sean Huze
Sean Huze
Conway
Eric Loren
Eric Loren
CIA Techs
Patrick St. Esprit
Patrick St. Esprit
Military Intel 2 Star
Driss Roukhe
Driss Roukhe
Tahir al-Malik
Said Faraj
Said Faraj
Seyyed Hamza
Aymen Hamdouchi
Aymen Hamdouchi
Ayad Hamza
Troy Brown
Troy Brown
Soldier at WMD Site
William Meredith
William Meredith
CPA Presser
Tommy Campbell
Tommy Campbell
Chopper Comms Commander
Igal Naor
Igal Naor
General Al Rawi
Nicoye Banks
Nicoye Banks
Perry
Bijan Daneshmand
Bijan Daneshmand
Zubaidi's Aide
Soumaya Akaaboune
Soumaya Akaaboune
Sanaa
Mohamed Kafi
Mohamed Kafi
Iraqi Officer
Jerry Della Salla
Jerry Della Salla
Wilkins

Images

Green Zone Poster
Green Zone Poster

Detailed Information

General Information

Original Title: Green Zone

Creators: Hwang Dong-hyuk

Gender: War, Adventure, Drama, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $100,000,000.00

Revenue: $94,882,889.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/22972

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

PHP com cURL

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

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

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

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