Santa Fe Trail (1940)

As a penalty for fighting fellow classmates days before graduating from West Point, J.E.B. Stuart, George Armstrong Custer and four friends are assigned to the 2nd Cavalry, stationed at Fort Leavenworth. While there they aid in the capture and execution of the abolitionist, John Brown following the Battle of Harpers Ferry.

1940
Western
5.0
/uBtJzonmF9uOFrDXlqQuxTfMwl7.jpg Poster

Cast

Ronald Reagan
Ronald Reagan
George Custer
Alan Baxter
Alan Baxter
Oliver Brown
Joseph Crehan
Joseph Crehan
Officer at Washington Party (uncredited)
John Litel
John Litel
Martin
Maris Wrixon
Maris Wrixon
Girl at Wedding (uncredited)
Ward Bond
Ward Bond
Townley
Frank Mills
Frank Mills
Train Passenger (uncredited)
Errol Flynn
Errol Flynn
Jeb Stuart
Olivia de Havilland
Olivia de Havilland
Kit Carson Holliday
Alan Hale
Alan Hale
Tex Bell
Henry O'Neill
Henry O'Neill
Cyrus Brody
William Lundigan
William Lundigan
Bob Holliday
Guinn 'Big Boy' Williams
Guinn 'Big Boy' Williams
Windy Brody
Georgia Caine
Georgia Caine
Officer's Wife at Party (uncredited)
Russell Simpson
Russell Simpson
Shubel Morgan
Spencer Charters
Spencer Charters
Conductor
Jim Farley
Jim Farley
Brewer, Armory Hostage (uncredited)
Wilfred Lucas
Wilfred Lucas
Weiner (uncredited)
Jack Mower
Jack Mower
Surveyor (uncredited)
Eddy Waller
Eddy Waller
Workman (uncredited)
Frank Wilcox
Frank Wilcox
James Longstreet
Moroni Olsen
Moroni Olsen
Robert E. Lee
Harry Cording
Harry Cording
Workman in Delaware Crossing (uncredited)
Mira McKinney
Mira McKinney
Survivor at Delaware Crossing (uncredited)
Van Heflin
Van Heflin
Rader
Theresa Harris
Theresa Harris
Maid (uncredited)
Blackie Whiteford
Blackie Whiteford
Henchman (uncredited)
Al Bridge
Al Bridge
Palmyra Townsman (uncredited)
Eddy Chandler
Eddy Chandler
Armory Guard (uncredited)
Creighton Hale
Creighton Hale
Telegraph Operator (uncredited)
Edward Hearn
Edward Hearn
Abolitionist in Armory (uncredited)
Robert McKenzie
Robert McKenzie
Kansas Townsman (uncredited)
Trevor Bardette
Trevor Bardette
Agitator in Palmyra (uncredited)
Charles Middleton
Charles Middleton
Gentry
Ernest Whitman
Ernest Whitman
Black Man in Barn (uncredited)
Nestor Paiva
Nestor Paiva
Abolitionist Noticing Army Horse Brand (uncredited)
Russell Hicks
Russell Hicks
Dr. J. Boyce Russell (uncredited)
Victor Kilian
Victor Kilian
Dispatch Rider (uncredited)
Eric Mayne
Eric Mayne
Train Passenger (uncredited)
Joe Sawyer
Joe Sawyer
Kitzmiller
Frank Mayo
Frank Mayo
Engineer (uncredited)
Lane Chandler
Lane Chandler
Adjutant (uncredited)
Raymond Massey
Raymond Massey
John Brown
Mildred Coles
Mildred Coles
Girl at Wedding (uncredited)
Selmer Jackson
Selmer Jackson
Officer Reading Names of Graduates (uncredited)
Grace Stafford
Grace Stafford
Farmer's Wife (uncredited)
David Bruce
David Bruce
Phil Sheridan
Gene Reynolds
Gene Reynolds
Jason Brown
Erville Alderson
Erville Alderson
Jefferson Davis
Arthur Aylesworth
Arthur Aylesworth
Abolitionist at Russell's House (uncredited)
Roy Barcroft
Roy Barcroft
Engineer (uncredited)
Hobart Cavanaugh
Hobart Cavanaugh
Barber Doyle
Libby Taylor
Libby Taylor
Black Woman (uncredited)
Walter Soderling
Walter Soderling
Abolitionist at Russell's House (uncredited)
Tom McGuire
Tom McGuire
Man with Surveyor (uncredited)
Henry Hall
Henry Hall
Abolitionist at Russell's House (uncredited)
Charles D. Brown
Charles D. Brown
Major Sumner
Lafe McKee
Lafe McKee
Minister (uncredited)
Clinton Rosemond
Clinton Rosemond
Black Man on Train (uncredited)
Lucia Carroll
Lucia Carroll
Girl at Wedding (uncredited)
Mitzi Green
Mitzi Green
Girl at Wedding (uncredited)
Susan Peters
Susan Peters
Charlotte

Images

Santa Fe Trail Poster
Santa Fe Trail Poster

Detailed Information

General Information

Original Title: Santa Fe Trail

Creators: Hwang Dong-hyuk

Gender: Western,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $0.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/1718

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

PHP com cURL

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

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

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

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