Girlfriends Day (2017)

When hes caught up in a deadly conspiracy, an unemployed greeting card writer must create the perfect card for a new holiday to save his skin.

2017
Drama
Comedy
5.0
/6D47RMFdPVVEzZPmiSbyH9R2iTV.jpg Poster

Cast

Alex Karpovsky
Alex Karpovsky
Styvesan
Larry Fessenden
Larry Fessenden
Taft
Stacy Keach
Stacy Keach
Gundy
June Diane Raphael
June Diane Raphael
Karen Lamb
Lauren Sánchez Bezos
Lauren Sánchez Bezos
Newscaster
Natasha Lyonne
Natasha Lyonne
Mrs. Taft
Stephanie Courtney
Stephanie Courtney
Cathy Gile
Amber Tamblyn
Amber Tamblyn
Jill
Toby Huss
Toby Huss
Betcher
David Sullivan
David Sullivan
Sonnyboy
Nate Mooney
Nate Mooney
Warez
Steven Michael Quezada
Steven Michael Quezada
Munoz
Rich Sommer
Rich Sommer
Buddy
Bob Odenkirk
Bob Odenkirk
Ray
Ed Begley Jr.
Ed Begley Jr.
Rupert
Kevin O'Grady
Kevin O'Grady
Detective Miller
Stephane Nicoli
Stephane Nicoli
Guy Using the Bathroom (uncredited)
Radek Lord
Radek Lord
Peabody
David Lynch
David Lynch
Narrator (voice)
Lauren Lapkus
Lauren Lapkus
Cardie #2
Andy Richter
Andy Richter
Harold Lamb
Lyric Lewis
Lyric Lewis
Cardie #1
Tucker Smallwood
Tucker Smallwood
Governor Speakman
Courtney Fansler
Courtney Fansler
Ellen
Julyza Commodore
Julyza Commodore
Student Driver
Grady Lee Richmond
Grady Lee Richmond
Shitfoot
Echo Kellum
Echo Kellum
Madsen
Derek Waters
Derek Waters
Drew
Mason Trueblood
Mason Trueblood
Jock
Julia Cho
Julia Cho
Secretary
Brett Paesel
Brett Paesel
Mrs. Kim

Images

Girlfriends Day Poster
Girlfriends Day Poster

Detailed Information

General Information

Original Title: Girlfriends Day

Creators: Hwang Dong-hyuk

Gender: Drama, Comedy,

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

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

PHP com cURL

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

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

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

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