The Hummingbird Project (2019)

A pair of high-frequency traders go up against their old boss in an effort to make millions in a fiber-optic cable deal.

2019
Drama
Thriller
6.0
/co43RxflrWS5OqdhdxYPaCPWiWk.jpg Poster

Cast

Alexander Skarsgård
Alexander Skarsgård
Anton Zaleski
Sarah Goldberg
Sarah Goldberg
Mascha
Stéfanie Buxton
Stéfanie Buxton
Stewardess
Conrad Pla
Conrad Pla
Agent Santana
Tanya van Blokland
Tanya van Blokland
Family Aunt
Salma Hayek Pinault
Salma Hayek Pinault
Eva Torres
Jonathan Dubsky
Jonathan Dubsky
Mr. Simon
Kwasi Songui
Kwasi Songui
Ray
Raphael Grosz-Harvey
Raphael Grosz-Harvey
Gary
John Koensgen
John Koensgen
Amish Man
Jesse Eisenberg
Jesse Eisenberg
Vincent Zaleski
Johan Heldenbergh
Johan Heldenbergh
Amish Elder
Frank Schorpion
Frank Schorpion
Bryan Taylor
Alexandre Gorchkov
Alexandre Gorchkov
Family Uncle
Jessica Greco
Jessica Greco
Dr. Bloom
Juliette Gosselin
Juliette Gosselin
Young Amish Woman
Derek Johns
Derek Johns
High Frequency Trader #3
Daniel Jun
Daniel Jun
Jimmy Tran
Ayisha Issa
Ayisha Issa
Ophelia Troller
Chimwemwe Miller
Chimwemwe Miller
FBI Agent #1
Melantha Blackthorne
Melantha Blackthorne
Suburb Woman (uncredited)
Adam Bernett
Adam Bernett
High Frequency Trader #1
Chris Cavener
Chris Cavener
High Frequency Trader #4
Anna Maguire
Anna Maguire
Jenny
Stephanie Costa
Stephanie Costa
Trailer HQ Assistant
Christian Jadah
Christian Jadah
FBI Agent #3 / Emergency Doctor
Jonah Carson
Jonah Carson
Amish Son
André Simoneau
André Simoneau
Contractor #3
Michel Perron
Michel Perron
Contractor #4
Julian Bailey
Julian Bailey
Elliot
Shawn Campbell
Shawn Campbell
FBI Agent #2
Michael Mando
Michael Mando
Mark Vega
Tyler Elliot Burke
Tyler Elliot Burke
Tommy
Jude Beny
Jude Beny
Milena Zaleski
Erika Rosenbaum
Erika Rosenbaum
Receptionist
Kaniehtiio Horn
Kaniehtiio Horn
Barbara Lehman
Anne Day-Jones
Anne Day-Jones
Nurse #2
Robert Reynolds
Robert Reynolds
KAX House Owner
Bruce Dinsmore
Bruce Dinsmore
Contractor #1
Aladeen Tawfeek
Aladeen Tawfeek
Airport Taxi Driver
Anton Koval
Anton Koval
Scott
Mark Slacke
Mark Slacke
Tasso Casilieris
Igor Ovadis
Igor Ovadis
Leon Zaleski
David Noël
David Noël
Quant #2
Alex Weiner
Alex Weiner
Careless Trader

Images

The Hummingbird Project Poster
The Hummingbird Project Poster

Video

trailer Oficial

Linha Reta (Dublado) - Trailer

trailer Oficial

Detailed Information

General Information

Original Title: The Hummingbird Project

Creators: Hwang Dong-hyuk

Gender: Drama, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $876,980.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/489243

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

PHP com cURL

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

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

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

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