His Name Was Jason: 30 Years of Friday the 13th (2010)

A retrospective documentary about the groundbreaking horror series, Friday the 13th, featuring interviews with cast and crew from the twelve films spanning 3 decades.

2010
Documentary
6.0
/1QjoeSj4Pqayy9kLEFDpJmwhfCk.jpg Poster

Cast

Brad Miska
Brad Miska
Self
Chuck Campbell
Chuck Campbell
Self
John Carl Buechler
John Carl Buechler
Self
Kane Hodder
Kane Hodder
Self
Amanda Righetti
Amanda Righetti
Self
Greg Nicotero
Greg Nicotero
Self
Tom Savini
Tom Savini
Self
Elissa Dowling
Elissa Dowling
Scream Queen
Derek Mears
Derek Mears
Self
Ryan Turek
Ryan Turek
Self
Joe Lynch
Joe Lynch
Self
Adam Green
Adam Green
Self
Adrienne King
Adrienne King
Self
Jeffrey Reddick
Jeffrey Reddick
Self
Seth Green
Seth Green
Self
Darcy DeMoss
Darcy DeMoss
Self
Travis Van Winkle
Travis Van Winkle
Self
Lawrence Monoson
Lawrence Monoson
Self
Erich Anderson
Erich Anderson
Self
Elizabeth Kaitan
Elizabeth Kaitan
Self
Stuart Charno
Stuart Charno
Self
Camilla More
Camilla More
Self
Judie Aronson
Judie Aronson
Self
John Shepherd
John Shepherd
Self
Lar Park Lincoln
Lar Park Lincoln
Self
Peter Mark Richman
Peter Mark Richman
Self
Ken Kirzinger
Ken Kirzinger
Self
Jensen Daggett
Jensen Daggett
Self
Kevin Spirtas
Kevin Spirtas
Self
Diane Almeida
Diane Almeida
Self
Lauren-Marie Taylor
Lauren-Marie Taylor
Self
C.J. Graham
C.J. Graham
Self
David Kagen
David Kagen
Self
Tom McLoughlin
Tom McLoughlin
Self
Deborah Voorhees
Deborah Voorhees
Self
Shavar Ross
Shavar Ross
Self
Bob DeSimone
Bob DeSimone
Self
Dick Wieand
Dick Wieand
Self
Carey More
Carey More
Self
Amy Steel
Amy Steel
Self
Richard Brooker
Richard Brooker
Self
Steve Dash
Steve Dash
Self
John Furey
John Furey
Self
Russell Todd
Russell Todd
Self
Warrington Gillette
Warrington Gillette
Self
Betsy Palmer
Betsy Palmer
Self
Ari Lehman
Ari Lehman
Self
Catherine Parks
Catherine Parks
Self
Larry Zerner
Larry Zerner
Self
Paul Kratka
Paul Kratka
Self
Gloria Charles
Gloria Charles
Self
Sean S. Cunningham
Sean S. Cunningham
Self
Harry Manfredini
Harry Manfredini
Self
Danny Steinmann
Danny Steinmann
Self
Joseph Zito
Joseph Zito
Self
Steven Barton
Steven Barton
Self
Rachel Belofsky
Rachel Belofsky
Self

Images

His Name Was Jason: 30 Years of Friday the 13th Poster
His Name Was Jason: 30 Years of Friday the 13th Poster

Detailed Information

General Information

Original Title: His Name Was Jason: 30 Years of Friday the 13th

Creators: Hwang Dong-hyuk

Gender: Documentary,

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

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

PHP com cURL

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

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

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

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