The Highwaymen (2019)

In 1934, Frank Hamer and Manny Gault, two former Texas Rangers, are commissioned to put an end to the wave of vicious crimes perpetrated by Bonnie Parker and Clyde Barrow, a notorious duo of infamous robbers and cold-blooded killers who nevertheless are worshiped by the public.

2019
Drama
Crime
Thriller
6.0
/wP3FAJPYqHjLMPooyHPvSbXoNyM.jpg Poster

Cast

Woody Harrelson
Woody Harrelson
Manny Gault
Thomas Mann
Thomas Mann
Deputy Ted Hinton
Billy Slaughter
Billy Slaughter
Reporter #1
William Sadler
William Sadler
Henry Barrow
Kathy Bates
Kathy Bates
Ma Ferguson
John Carroll Lynch
John Carroll Lynch
Lee Simmons
W. Earl Brown
W. Earl Brown
Ivy Methvin
Kevin Costner
Kevin Costner
Frank Hamer
Jesse C. Boyd
Jesse C. Boyd
Ray Hamilton
Jon Briddell
Jon Briddell
Oklahoma Radio Newscaster (voice)
Brian F. Durkin
Brian F. Durkin
Deputy Prentiss Oakley
David Dwyer
David Dwyer
Sheriff Smoot Schmid
Jeff Pope
Jeff Pope
Constable Cal Campbell
Lynden Orr
Lynden Orr
Violet / Bonnie (voice)
Robert Bryan Davis
Robert Bryan Davis
Guard Bozeman
Jason Davis
Jason Davis
Agent Kendale
Jane McNeill
Jane McNeill
Emma Parker
Josh Ventura
Josh Ventura
Okie G-Man
Josh Caras
Josh Caras
Wade McNabb
Joe Knezevich
Joe Knezevich
State Official #2
Silas Cooper
Silas Cooper
Chief Boyd
Kim Dickens
Kim Dickens
Gladys Hamer
Dean J. West
Dean J. West
Reporter #3
Billy 4 Johnston
Billy 4 Johnston
West Dallas Messenger Kid
Don Stallings
Don Stallings
Orphan Annie Ford Driver
Aaron Mitchell
Aaron Mitchell
Ununiformed Dallas Deputy (uncredited)
Michael Draper
Michael Draper
Tough Migrant Worker (Oklahoma)
David Born
David Born
Sheriff Henderson Jordan
David Furr
David Furr
Detective John Quinn
Emily Brobst
Emily Brobst
Bonnie Parker
Skip Stellrecht
Skip Stellrecht
Texas Radio Newscaster (voice)
Cullen Moss
Cullen Moss
Oklahoma Cop
Troy Hogan
Troy Hogan
Migrant Worker
Dean Denton
Dean Denton
Deputy Bob Alcorn
Kaley Wheless
Kaley Wheless
Jean Gault
Alex Elder
Alex Elder
Nate Gault
Edward Bossert
Edward Bossert
Clyde Barrow
Jake Dashnaw
Jake Dashnaw
Henry Methvin
Karson Kern
Karson Kern
Joe Palmer
Kevin Sangston
Kevin Sangston
Guard Crowson
Luray Cooper
Luray Cooper
Luther
Johnny McPhail
Johnny McPhail
Old Farmer (Grapevine)
Arvin Combs
Arvin Combs
State Official #1
Brandon O'Dell
Brandon O'Dell
Reporter #2
Alan Wells
Alan Wells
1st G-Man (Oklahoma)
Timothy McKinney
Timothy McKinney
Okie Migrant
Luke Loveless
Luke Loveless
Bottle Boy
Izzy G.
Izzy G.
Little Mudlark Girl
Mitch Eakins
Mitch Eakins
Fancy Dan #1
Matthew Paul Martinez
Matthew Paul Martinez
Fancy Dan #2
Todd Barnett
Todd Barnett
Local Reporter
Samantha Hunter Ogan
Samantha Hunter Ogan
Bonnie Parker Lookalike #2
Mikey Kelley
Mikey Kelley
Clyde (voice)
David Zyler
David Zyler
National Radio Newscaster (voice)

Images

The Highwaymen Poster
The Highwaymen Poster

Detailed Information

General Information

Original Title: The Highwaymen

Creators: Hwang Dong-hyuk

Gender: Drama, Crime, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $49,000,000.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/500682

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

PHP com cURL

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

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

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

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