Texas (1941)

Two Virginians are heading for a new life in Texas when they witness a stagecoach being held up. They decide to rob the robbers and make off with the loot. To escape a posse, they split up and dont see each other again for a long time. When they do meet up again, they find themselves on different sides of the law. This leads to the increasing estrangement of the two men, who once thought of themselves as brothers.

1941
Western
Drama
Romance
6.0
/9X8XBAswQx1tIsFADtKYsyds6yO.jpg Poster

Cast

Joseph Crehan
Joseph Crehan
Rancher Dusty King
Carleton Young
Carleton Young
Lashan Cowhand
Ethan Laidlaw
Ethan Laidlaw
Ringsider
Max Wagner
Max Wagner
Fats Delaney
Dan White
Dan White
Ringsider (uncredited)
Fred Aldrich
Fred Aldrich
Ringsider
Don Beddoe
Don Beddoe
Sheriff
Edmund Cobb
Edmund Cobb
Rancher Blaire
Glenn Ford
Glenn Ford
Tod Ramsey
William Holden
William Holden
Dan Thomas
Hank Bell
Hank Bell
Hank - King Ranch Foreman
Clem Bevans
Clem Bevans
Abilene Fight Spectator (uncredited)
Tex Cooper
Tex Cooper
Ringsider
Bud Osborne
Bud Osborne
Cattleman at Meeting
Edgar Buchanan
Edgar Buchanan
Buford 'Doc' Thorpe
George Lloyd
George Lloyd
Walt - Bartender
Kermit Maynard
Kermit Maynard
Cowboy in Saloon (uncredited)
Bud Geary
Bud Geary
Ringsider (uncredited)
Addison Richards
Addison Richards
Matt Lashan
Ralph Peters
Ralph Peters
Deputy
Al Ferguson
Al Ferguson
Jim's Friend
Matty Roubert
Matty Roubert
Townsman
Otto Hoffman
Otto Hoffman
Saddle Artisan
Harry Tenbrook
Harry Tenbrook
Handler / Cornerman at Fight
Victor Travis
Victor Travis
Cattleman at Meeting
James Flavin
James Flavin
Abilene Fight Announcer
Cactus Mack
Cactus Mack
Lashan Henchman
Andrew Tombes
Andrew Tombes
Tennessee
William Gould
William Gould
Parkhill - Abilene Cattle Buyer
Willard Robertson
Willard Robertson
Rancher Wilson
Jack Ingram
Jack Ingram
Lashan Henchman
Al Taylor
Al Taylor
Cattleman at Meeting
Raymond Hatton
Raymond Hatton
Abilene Judge
Arthur Loft
Arthur Loft
Cattleman
George Bancroft
George Bancroft
Windy Miller
Charles Murphy
Charles Murphy
Cattleman at Meeting
Lyle Latell
Lyle Latell
Dutch Henry (uncredited)
George Morrell
George Morrell
Texas Rancher
Art Mix
Art Mix
Lashan Henchman
Edmund MacDonald
Edmund MacDonald
Comstock
Claire Trevor
Claire Trevor
Michael 'Mike' King
Duke York
Duke York
Wise Guy
Gene Alsace
Gene Alsace
Barfly
Richard Fiske
Richard Fiske
Red, Fight Timekeeper

Images

Texas Poster
Texas Poster

Detailed Information

General Information

Original Title: Texas

Creators: Hwang Dong-hyuk

Gender: Western, Drama, Romance,

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/75315

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

PHP com cURL

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

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

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

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