We Were Soldiers (2002)

The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.

2002
War
History
Action
7.0
/eyR74V84d3u5QNYGRKXfaJmHo5M.jpg Poster

Cast

Madeleine Stowe
Madeleine Stowe
Julie Moore
Sam Elliott
Sam Elliott
Sgt. Maj. Basil Plumley
Mel Gibson
Mel Gibson
Lt. Col. Hal Moore
Marc Blucas
Marc Blucas
2nd Lt. Henry Herrick
George Cheung
George Cheung
NVA Officer (uncredited)
Michael Tomlinson
Michael Tomlinson
Col. Tim Brown
Josh Daugherty
Josh Daugherty
Sp4 Robert Ouellette
Greg Kinnear
Greg Kinnear
Maj. Bruce 'Snake' Crandall
Barry Pepper
Barry Pepper
Joe Galloway
Lyndon B. Johnson
Lyndon B. Johnson
Self (archive footage) (uncredited)
Tim Abell
Tim Abell
Army Intelligence Officer
Desmond Harrington
Desmond Harrington
Sp4 Bill Beck
Clark Gregg
Clark Gregg
Capt. Tom Metsker
Patrick St. Esprit
Patrick St. Esprit
General in Hallway
Daniel Roebuck
Daniel Roebuck
Medevac CO
Justin Gordon
Justin Gordon
French Officer (uncredited)
Jon Hamm
Jon Hamm
Capt. Matt Dillon
Dylan Walsh
Dylan Walsh
Capt. Robert Edwards
Brian Carpenter
Brian Carpenter
Sec. of Defense Robert McNamara (uncredited)
Luke Benward
Luke Benward
David Moore
Forry Smith
Forry Smith
Sfc. Carl Palmer
Brian Tee
Brian Tee
Pfc. Jimmy Nakayama
Brendan Ford
Brendan Ford
Jump Coordinator (uncredited)
Devon Werkheiser
Devon Werkheiser
Steve Moore
Taylor Momsen
Taylor Momsen
Daughter Julie Moore
Blake Heron
Blake Heron
Sp4 Galen Bungum
Jim Grimshaw
Jim Grimshaw
Maj. Gen. Henry Kinnard
Johnny Tri Nguyen
Johnny Tri Nguyen
Young NVA Lieutenant (uncredited)
Keri Russell
Keri Russell
Barbara Geoghegan
Jsu Garcia
Jsu Garcia
Capt. Tony Nadal
Joseph Hieu
Joseph Hieu
NVA Officer
Randy Oglesby
Randy Oglesby
Lt. Col. List (uncredited)
Keith Szarabajka
Keith Szarabajka
Diplomatic Spook
Chris Klein
Chris Klein
2nd Lt. Jack Geoghegan
Matt Mangum
Matt Mangum
Pvt. Soprano (uncredited)
Cliff Fleming
Cliff Fleming
Capt. Jon Mills (uncredited)
Danny Le Boyer
Danny Le Boyer
Sergeant (uncredited)
Ryan Hurst
Ryan Hurst
Sgt. Ernie Savage
Bellamy Young
Bellamy Young
Catherine Metsker
Jonathan Parks Jordan
Jonathan Parks Jordan
White Private (uncredited)
Simbi Khali
Simbi Khali
Alma Givens
Mark McCracken
Mark McCracken
Capt. Ed 'Too Tall' Freeman
Vien Hong
Vien Hong
Mr. Nik
Robert Bagnell
Robert Bagnell
1st Lt. Charlie Hastings
Nicholas Hosking
Nicholas Hosking
French Captain
Đơn Dương
Đơn Dương
Lt. Col. Nguyen Huu An
Erik MacArthur
Erik MacArthur
Sp4 Russell Adams
Sloane Momsen
Sloane Momsen
Cecile Moore
Vincent Angell
Vincent Angell
Capt. Robert 'Doc' Carrera
Diep Bui
Diep Bui
NVA Wife

Images

We Were Soldiers Poster
We Were Soldiers Poster

Detailed Information

General Information

Original Title: We Were Soldiers

Creators: Hwang Dong-hyuk

Gender: War, History, Action,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $75,000,000.00

Revenue: $114,660,784.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/10590

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

PHP com cURL

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

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

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

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