School of Rock (2003)

Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fifth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock n roll. The schools hard-nosed principal is rightly suspicious of Finns activities. But Finns roommate remains in the dark about what hes doing.

2003
Music
Family
Comedy
7.0
/13Yfl9rgkipRAZriIpcm21sjySz.jpg Poster

Cast

Chris Stack
Chris Stack
Doug
Tim Hopper
Tim Hopper
Zack's Father
Jack Black
Jack Black
Dewey Finn
Nicky Katt
Nicky Katt
Razor
Amy Sedaris
Amy Sedaris
Mrs. Haynish
Carlos Velazquez
Carlos Velazquez
Musician
Frank Whaley
Frank Whaley
Battle of the Bands Director (uncredited)
Sarah Silverman
Sarah Silverman
Patty Di Marco
Riley G. Matthews, Jr.
Riley G. Matthews, Jr.
Blood Brothers MC Biker (uncredited)
Eron Otcasek
Eron Otcasek
Musician
Cedric Cannon
Cedric Cannon
Leonard's Dad (uncredited)
Catherine A. Callahan
Catherine A. Callahan
Concert Goer (uncredited)
Lauren Adler
Lauren Adler
Concert Goer (uncredited)
Joan Cusack
Joan Cusack
Rosalie Mullins
Sharon Washington
Sharon Washington
Alicia's Mother
Miranda Cosgrove
Miranda Cosgrove
Summer Hathaway
Mike White
Mike White
Ned Schneebly
Joey Gaydos Jr.
Joey Gaydos Jr.
Zack
Kevin Alexander Clark
Kevin Alexander Clark
Freddy Jones
Rivkah Reyes
Rivkah Reyes
Katie
Robert Tsai
Robert Tsai
Lawrence
Maryam Hassan
Maryam Hassan
Tomika
Aleisha Allen
Aleisha Allen
Alicia
Caitlin Hale
Caitlin Hale
Marta
Brian Falduto
Brian Falduto
Billy
Z Infante
Z Infante
Gordon
James Hosey
James Hosey
Marco
Angelo Massagli
Angelo Massagli
Frankie
Cole Hawkins
Cole Hawkins
Leonard
Lee Wilkof
Lee Wilkof
Mr. Green
Kate McGregor-Stewart
Kate McGregor-Stewart
Mrs. Lemmons
Adam Pascal
Adam Pascal
Theo
Lucas Babin
Lucas Babin
Spider
Lucas Papaelias
Lucas Papaelias
Neil
Suzzanne Douglas
Suzzanne Douglas
Tomika's Mother
Jordan-Claire Green
Jordan-Claire Green
Michelle
Wally Dunn
Wally Dunn
Gym Teacher
Heather Goldenhersh
Heather Goldenhersh
Sheila
Timothy
Timothy "Speed" Levitch
Waiter
Kim Brockington
Kim Brockington
Leonard's Mother
Kathleen McNenny
Kathleen McNenny
Freddy's Mother
Joanna Adler
Joanna Adler
Summer's Mother
Robert Lin
Robert Lin
Lawrence's Father
Barry Shurchin
Barry Shurchin
Cop
MacIntyre Dixon
MacIntyre Dixon
Bus Driver
Mandy Siegfried
Mandy Siegfried
Female Employee
Elle Key
Elle Key
Concert Goer
Kelly Anne Burns
Kelly Anne Burns
Groupie (uncredited)
Leanne Cabrera
Leanne Cabrera
Concert Goer (uncredited)
Jane DeNoble
Jane DeNoble
Billy's Mom (uncredited)
Caileigh Scott
Caileigh Scott
Concert Goer (uncredited)
Ryan O'Connor
Ryan O'Connor
No Vaccancy's Biggest Fan (uncredited)

Images

School of Rock Poster
School of Rock Poster

Detailed Information

General Information

Original Title: School of Rock

Creators: Hwang Dong-hyuk

Gender: Music, Family, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $35,000,000.00

Revenue: $131,098,967.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/1584

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

PHP com cURL

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

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

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

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